Difference between revisions of "MediaWiki:Chameleon.css"

From Pathfinder Wiki
(Created page with "html[lang="en"] #p-logo a { background-image: none!important; background-color: red!important; }")
 
 
(One intermediate revision by the same user not shown)
Line 1: Line 1:
 +
/* The Logo for ENGLISH*/
 
html[lang="en"] #p-logo a {
 
html[lang="en"] #p-logo a {
background-image: none!important;
+
    background: transparent no-repeat
background-color: red!important;
+
        url("/images/d/d9/Pathfinder_Logo_Simplified_-_ENGLISH.png");
 +
    background-size: cover;
 +
}
 +
html[lang="en"] #p-logo a img {
 +
visibility: hidden;
 +
}
 +
 
 +
/* The Logo for GERMAN*/
 +
html[lang="de"] #p-logo a {
 +
    background: transparent no-repeat
 +
        url("/images/e/e8/Pathfinder_Logo_Simplified_-_GERMAN.png");
 +
    background-size: cover;
 +
}
 +
html[lang="de"] #p-logo a img {
 +
visibility: hidden;
 +
}
 +
 
 +
/* The Logo for FRENCH*/
 +
html[lang="fr"] #p-logo a {
 +
    background: transparent no-repeat
 +
        url("/images/d/d7/Pathfinder_Logo_Simplified_-_FRENCH.png");
 +
    background-size: cover;
 +
}
 +
html[lang="fr"] #p-logo a img {
 +
visibility: hidden;
 +
}
 +
 
 +
/* The Logo for PORTUGUESE*/
 +
html[lang="pt"] #p-logo a,
 +
html[lang="pt-BR"] #p-logo a {
 +
    background: transparent no-repeat
 +
        url("/images/6/69/Pathfinder_Logo_Simplified_-_PORTUGUESE.png");
 +
    background-size: cover;
 +
}
 +
html[lang="pt"] #p-logo a img,
 +
html[lang="pt-BR"] #p-logo a img {
 +
visibility: hidden;
 +
}
 +
 
 +
/* The Logo for SPANISH*/
 +
html[lang="es"] #p-logo a {
 +
    background: transparent no-repeat
 +
        url("/images/f/f6/Pathfinder_Logo_Simplified_-_SPANISH.png");
 +
    background-size: cover;
 +
}
 +
html[lang="es"] #p-logo a img {
 +
visibility: hidden;
 
}
 
}

Latest revision as of 22:00, 2 June 2021

/* The Logo for ENGLISH*/
html[lang="en"] #p-logo a {
    background: transparent no-repeat
        url("/images/d/d9/Pathfinder_Logo_Simplified_-_ENGLISH.png");
    background-size: cover;
}
html[lang="en"] #p-logo a img {
	visibility: hidden;
}

/* The Logo for GERMAN*/
html[lang="de"] #p-logo a {
    background: transparent no-repeat
        url("/images/e/e8/Pathfinder_Logo_Simplified_-_GERMAN.png");
    background-size: cover;
}
html[lang="de"] #p-logo a img {
	visibility: hidden;
}

/* The Logo for FRENCH*/
html[lang="fr"] #p-logo a {
    background: transparent no-repeat
        url("/images/d/d7/Pathfinder_Logo_Simplified_-_FRENCH.png");
    background-size: cover;
}
html[lang="fr"] #p-logo a img {
	visibility: hidden;
}

/* The Logo for PORTUGUESE*/
html[lang="pt"] #p-logo a,
html[lang="pt-BR"] #p-logo a {
    background: transparent no-repeat
        url("/images/6/69/Pathfinder_Logo_Simplified_-_PORTUGUESE.png");
    background-size: cover;
}
html[lang="pt"] #p-logo a img,
html[lang="pt-BR"] #p-logo a img {
	visibility: hidden;
}

/* The Logo for SPANISH*/
html[lang="es"] #p-logo a {
    background: transparent no-repeat
        url("/images/f/f6/Pathfinder_Logo_Simplified_-_SPANISH.png");
    background-size: cover;
}
html[lang="es"] #p-logo a img {
	visibility: hidden;
}