MediaWiki:Common.css: Difference between revisions
Appearance
No edit summary |
No edit summary |
||
| Line 2: | Line 2: | ||
/* Adjust the logo size */ | /* Adjust the logo size */ | ||
.mw-logo | .mw-logo a { /* Or the correct selector for your skin */ | ||
width: 200px; | width: 200px; | ||
height: 200px; | height: 200px; | ||
| Line 8: | Line 8: | ||
} | } | ||
.mw-logo | .mw-logo img.mw-logo-icon { | ||
width: 200px; | width: 200px; | ||
height: 200px; | height: 200px; | ||
} | } | ||
} | } | ||
Revision as of 19:57, 13 January 2026
/* CSS placed here will be applied to all skins */
/* Adjust the logo size */
.mw-logo a { /* Or the correct selector for your skin */
width: 200px;
height: 200px;
background-size: contain; /* Ensures the whole image is visible */
}
.mw-logo img.mw-logo-icon {
width: 200px;
height: 200px;
}
}