MediaWiki:Vector-2022.css
Note: After publishing, you may have to bypass your browser's cache to see the changes.
- Firefox / Safari: Hold Shift while clicking Reload, or press either Ctrl-F5 or Ctrl-R (โ-R on a Mac)
- Google Chrome: Press Ctrl-Shift-R (โ-Shift-R on a Mac)
- Edge: Hold Ctrl while clicking Refresh, or press Ctrl-F5.
/* White page background (uses the theme token so dark mode still works) */
body,
.mw-page-container {
background-color: var(--background-color-base, #fff) !important;
}
/* Remove the border wrapping the centre/content section */
.mw-page-container,
.mw-content-container,
.mw-body {
border: none !important;
}
/* Drop the "ICE List Wiki" wordmark text, let the logo stand alone */
.mw-logo-wordmark,
.mw-logo-tagline {
display: none !important;
}
.mw-logo-icon {
width: 156px !important;
height: 156px !important;
background-size: contain !important;
}
.mw-header {
min-height: 192px !important;
align-items: center !important;
}
/* Drop the wordmark text, let the logo stand alone */
.mw-logo-wordmark,
.mw-logo-tagline { display: none !important; }
/* Desktop: big logo, tall header */
@media (min-width: 1000px) {
.mw-logo-icon {
width: 176px !important;
height: 176px !important;
background-size: contain !important;
}
.mw-header {
min-height: 192px !important;
align-items: center !important;
}
}
/* Mobile / narrow: normal visible logo, normal header */
@media (max-width: 999px) {
.mw-logo-icon {
display: inline-block !important;
width: 50px !important;
height: 50px !important;
background-size: contain !important;
}
}