MediaWiki:Citizen.css: Difference between revisions
MediaWiki interface page
More actions
No edit summary |
No edit summary Tag: Reverted |
||
| Line 6: | Line 6: | ||
display: none; | display: none; | ||
} | } | ||
/* Change sidebar logo to small one */ | |||
body > header > div.citizen-header__logo > a { | |||
background-image: url("/images/favicon.png"); | |||
display: block; | |||
width: 32px; | |||
height: auto; | |||
background-size: contain; | |||
background-repeat: no-repeat; | |||
} | |||
body > header > div.citizen-header__logo > a > img { | |||
display: none; /* hide the original <img> */ | |||
} | |||
Revision as of 14:58, 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;
}
/* Change sidebar logo to small one */
body > header > div.citizen-header__logo > a {
background-image: url("/images/favicon.png");
display: block;
width: 32px;
height: auto;
background-size: contain;
background-repeat: no-repeat;
}
body > header > div.citizen-header__logo > a > img {
display: none; /* hide the original <img> */
}
/* Put larger logo in the footer */
#footer-sitetitle > img {
content: url("/images/OpenfrontWiki_cropped.png");
width: 124px; /* adjust as needed */
height: auto;
}