MediaWiki:Citizen.css: Difference between revisions
MediaWiki interface page
More actions
No edit summary |
No edit summary |
||
| Line 6: | Line 6: | ||
} | } | ||
/* Default side bar logo (desktop) */ | |||
body > header > div.citizen-header__logo > a > img { | body > header > div.citizen-header__logo > a > img { | ||
content: url("/images/favicon.png"); | content: url("/images/favicon.png"); | ||
width: | width: 32px; | ||
height: auto; | height: auto; | ||
} | } | ||
/* Mobile logo for small screens */ | |||
@media (max-width: 768px) { | |||
body > header > div.citizen-header__logo > a > img { | |||
content: url("/images/favicon.png"); | |||
width: 16px; | |||
} | |||
} | |||
Revision as of 14:50, 16 November 2025
/* All CSS here will be loaded for users of the Citizen skin */
/* Hide site name text */
.skin-citizen .mw-logo-wordmark {
display: none;
}
/* Default side bar logo (desktop) */
body > header > div.citizen-header__logo > a > img {
content: url("/images/favicon.png");
width: 32px;
height: auto;
}
/* Mobile logo for small screens */
@media (max-width: 768px) {
body > header > div.citizen-header__logo > a > img {
content: url("/images/favicon.png");
width: 16px;
}
}
#footer-sitetitle > img {
content: url("/images/OpenfrontWiki_cropped.png");
width: 124px; /* adjust as needed */
height: auto;
}