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; }")
 
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/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/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/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/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/Pathfinder\ Logo\ Simplified\ -\ SPANISH.png");
 +
    background-size: cover;
 +
}
 +
html[lang="es"] #p-logo a img {
 +
visibility: hidden;
 
}
 
}

Revision as of 21:54, 2 June 2021

/* The Logo for ENGLISH*/
html[lang="en"] #p-logo a {
    background: transparent no-repeat
        url("/images/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/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/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/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/Pathfinder\ Logo\ Simplified\ -\ SPANISH.png");
    background-size: cover;
}
html[lang="es"] #p-logo a img {
	visibility: hidden;
}