MediaWiki:Common.css: Difference between revisions
Appearance
Set sitewide style, 1st revision |
m Slight sitewide style change |
||
| Line 1: | Line 1: | ||
/* CSS placed here will be applied to all skins */ | /* CSS placed here will be applied to all skins */ | ||
/* Keeperverse | /* Keeperverse wiki typography – UESP-inspired */ | ||
body, | body, | ||
.mw-body, | .mw-body, | ||
#content { | #content { | ||
font-family: | font-family: Verdana, Geneva, sans-serif; | ||
font-size: | font-size: 14px; | ||
line-height: 1. | line-height: 1.55; | ||
color: #2b2414; | color: #2b2414; | ||
background-color: #f8f5e9; | background-color: #f8f5e9; | ||
} | } | ||
/* Headings | /* Headings slightly larger and darker for readability */ | ||
h1, h2, h3, h4, h5, h6 { | h1, h2, h3, h4, h5, h6 { | ||
font-family: | font-family: Verdana, Geneva, sans-serif; | ||
font-weight: | font-weight: bold; | ||
color: # | color: #1f190b; | ||
} | } | ||
/* Links | /* Links – warm blue for readability against parchment background */ | ||
a, a:visited { | a, a:visited { | ||
color: # | color: #003399; | ||
} | } | ||
a:hover { | a:hover { | ||
color: # | color: #0000cc; | ||
text-decoration: underline; | text-decoration: underline; | ||
} | } | ||
/* | /* Boxes, infoboxes, table backgrounds */ | ||
pre, code, .infobox, .toc, .navbox { | pre, code, .infobox, .toc, .navbox { | ||
background-color: #f3efdc; | background-color: #f3efdc; | ||
| Line 35: | Line 34: | ||
} | } | ||
/* | /* Center content, comfortable reading width */ | ||
.mw-body-content { | .mw-body-content { | ||
max-width: 960px; | max-width: 960px; | ||
| Line 41: | Line 40: | ||
} | } | ||
/* | /* Ensure templates inherit */ | ||
.worldbox { | .worldbox { | ||
font-family: inherit; | font-family: inherit; | ||
} | } | ||
Revision as of 06:32, 30 October 2025
/* CSS placed here will be applied to all skins */
/* Keeperverse wiki typography – UESP-inspired */
body,
.mw-body,
#content {
font-family: Verdana, Geneva, sans-serif;
font-size: 14px;
line-height: 1.55;
color: #2b2414;
background-color: #f8f5e9;
}
/* Headings slightly larger and darker for readability */
h1, h2, h3, h4, h5, h6 {
font-family: Verdana, Geneva, sans-serif;
font-weight: bold;
color: #1f190b;
}
/* Links – warm blue for readability against parchment background */
a, a:visited {
color: #003399;
}
a:hover {
color: #0000cc;
text-decoration: underline;
}
/* Boxes, infoboxes, table backgrounds */
pre, code, .infobox, .toc, .navbox {
background-color: #f3efdc;
border-color: #c6b480;
}
/* Center content, comfortable reading width */
.mw-body-content {
max-width: 960px;
margin: 0 auto;
}
/* Ensure templates inherit */
.worldbox {
font-family: inherit;
}