MediaWiki:Common.css: Difference between revisions
No edit summary |
No edit summary |
||
Line 1: | Line 1: | ||
/* CSS placed here will be applied to all skins */ | /* CSS placed here will be applied to all skins */ | ||
/* The Kaloxys title next to the logo */ | |||
.mw-logo-wordmark { | .mw-logo-wordmark { | ||
font: 40px Georgia, serif; | font: 40px Georgia, serif; | ||
color: #000000; | color: #000000; | ||
} | |||
/* Ensure the logo container has the necessary dimensions */ | |||
#p-logo { | |||
width: 135px; /* Or larger if your skin allows */ | |||
height: 135px; /* Or larger if your skin allows */ | |||
overflow: hidden; | |||
} | |||
/* Adjust the logo image itself */ | |||
#p-logo a, #p-logo img { | |||
width: 100%; | |||
height: 100%; | |||
} | } |
Revision as of 13:02, 5 December 2024
/* CSS placed here will be applied to all skins */ /* The Kaloxys title next to the logo */ .mw-logo-wordmark { font: 40px Georgia, serif; color: #000000; } /* Ensure the logo container has the necessary dimensions */ #p-logo { width: 135px; /* Or larger if your skin allows */ height: 135px; /* Or larger if your skin allows */ overflow: hidden; } /* Adjust the logo image itself */ #p-logo a, #p-logo img { width: 100%; height: 100%; }