MediaWiki:Common.css: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
No edit summary |
||
| Line 31: | Line 31: | ||
background-position: top center; | background-position: top center; | ||
height: 80px; | height: 80px; | ||
} | |||
#p-logo a { | |||
display: block !important; | |||
width: 120px !important; /* Change this value to resize the width */ | |||
height: 120px !important; /* Change this value to resize the height */ | |||
background-size: contain !important; /* Forces the image to scale perfectly without cutting off */ | |||
background-position: center !important; | |||
background-repeat: no-repeat !important; | |||
margin: 0 auto !important; /* Centers the logo image inside the 160px column box */ | |||
} | } | ||
Revision as of 12:29, 15 June 2026
:root {
--wiki-bg: #f8f4e3;
--wiki-surface: #ece6d3;
--wiki-border: #c8b89a;
--wiki-accent: #8b6914;
--wiki-text: #2c2416;
--wiki-link: #4a3b8c;
}
body {
background-color: var(--wiki-bg);
color: var(--wiki-text);
}
/* Navigation sidebar */
#mw-panel {
background: var(--wiki-surface);
border-right: 1px solid var(--wiki-border);
}
/* Content area */
#content {
background: var(--wiki-bg);
border: 1px solid var(--wiki-border);
}
#mw-head-base,
.mw-header {
background-image: url('https://pbs.twimg.com/profile_banners/2049672463005474816/1778779323');
background-size: cover;
background-position: top center;
height: 80px;
}
#p-logo a {
display: block !important;
width: 120px !important; /* Change this value to resize the width */
height: 120px !important; /* Change this value to resize the height */
background-size: contain !important; /* Forces the image to scale perfectly without cutting off */
background-position: center !important;
background-repeat: no-repeat !important;
margin: 0 auto !important; /* Centers the logo image inside the 160px column box */
}