Difference between revisions of "MediaWiki:Chameleon.css"

From Pathfinder Wiki
 
Line 2: Line 2:
 
html[lang="en"] #p-logo a {
 
html[lang="en"] #p-logo a {
 
     background: transparent no-repeat
 
     background: transparent no-repeat
         url("/images/Pathfinder\ Logo\ Simplified\ -\ ENGLISH.png");
+
         url("/images/d/d9/Pathfinder_Logo_Simplified_-_ENGLISH.png");
 
     background-size: cover;
 
     background-size: cover;
 
}
 
}
Line 12: Line 12:
 
html[lang="de"] #p-logo a {
 
html[lang="de"] #p-logo a {
 
     background: transparent no-repeat
 
     background: transparent no-repeat
         url("/images/Pathfinder\ Logo\ Simplified\ -\ GERMAN.png");
+
         url("/images/e/e8/Pathfinder_Logo_Simplified_-_GERMAN.png");
 
     background-size: cover;
 
     background-size: cover;
 
}
 
}
Line 22: Line 22:
 
html[lang="fr"] #p-logo a {
 
html[lang="fr"] #p-logo a {
 
     background: transparent no-repeat
 
     background: transparent no-repeat
         url("/images/Pathfinder\ Logo\ Simplified\ -\ FRENCH.png");
+
         url("/images/d/d7/Pathfinder_Logo_Simplified_-_FRENCH.png");
 
     background-size: cover;
 
     background-size: cover;
 
}
 
}
Line 33: Line 33:
 
html[lang="pt-BR"] #p-logo a {
 
html[lang="pt-BR"] #p-logo a {
 
     background: transparent no-repeat
 
     background: transparent no-repeat
         url("/images/Pathfinder\ Logo\ Simplified\ -\ PORTUGUESE.png");
+
         url("/images/6/69/Pathfinder_Logo_Simplified_-_PORTUGUESE.png");
 
     background-size: cover;
 
     background-size: cover;
 
}
 
}
Line 44: Line 44:
 
html[lang="es"] #p-logo a {
 
html[lang="es"] #p-logo a {
 
     background: transparent no-repeat
 
     background: transparent no-repeat
         url("/images/Pathfinder\ Logo\ Simplified\ -\ SPANISH.png");
+
         url("/images/f/f6/Pathfinder_Logo_Simplified_-_SPANISH.png");
 
     background-size: cover;
 
     background-size: cover;
 
}
 
}

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;
}