MediaWiki:Vector-2022.css: Difference between revisions
Created page with "→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; } /* Enlarge the log..." |
No edit summary |
||
| Line 18: | Line 18: | ||
} | } | ||
/* Enlarge the logo | /* Enlarge the logo and make the image scale to fill the box */ | ||
.mw-logo-icon { | .mw-logo-icon { | ||
width: | width: 88px !important; | ||
height: | height: 88px !important; | ||
background-size: contain !important; | |||
} | |||
/* Give the header room for the bigger logo and vertically centre everything */ | |||
.mw-header { | |||
min-height: 96px !important; | |||
align-items: center !important; | |||
} | } | ||
Revision as of 01:14, 31 May 2026
/* 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;
}
/* Enlarge the logo and make the image scale to fill the box */
.mw-logo-icon {
width: 88px !important;
height: 88px !important;
background-size: contain !important;
}
/* Give the header room for the bigger logo and vertically centre everything */
.mw-header {
min-height: 96px !important;
align-items: center !important;
}