Jump to content

MediaWiki:Common.css: Difference between revisions

From Sun Keeperverse Wiki
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 sitewide style baseline */
/* Keeperverse wiki typography – UESP-inspired */


/* Typography */
body,
body,
.mw-body,
.mw-body,
#content {
#content {
   font-family: "Inter", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
   font-family: Verdana, Geneva, sans-serif;
   font-size: 15px;
   font-size: 14px;
   line-height: 1.6;
   line-height: 1.55;
   color: #2b2414;
   color: #2b2414;
   background-color: #f8f5e9;
   background-color: #f8f5e9;
}
}


/* Headings: give a bookish sans-serif weight */
/* Headings slightly larger and darker for readability */
h1, h2, h3, h4, h5, h6 {
h1, h2, h3, h4, h5, h6 {
   font-family: "Inter", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
   font-family: Verdana, Geneva, sans-serif;
   font-weight: 700;
   font-weight: bold;
   color: #3a301a;
   color: #1f190b;
}
}


/* Links: subtle gold accent */
/* Links – warm blue for readability against parchment background */
a, a:visited {
a, a:visited {
   color: #8b6d00;
   color: #003399;
}
}
a:hover {
a:hover {
   color: #c09e2b;
   color: #0000cc;
   text-decoration: underline;
   text-decoration: underline;
}
}


/* Tables, boxes, misc background areas */
/* Boxes, infoboxes, table backgrounds */
pre, code, .infobox, .toc, .navbox {
pre, code, .infobox, .toc, .navbox {
   background-color: #f3efdc;
   background-color: #f3efdc;
Line 35: Line 34:
}
}


/* Adjust layout margins slightly for readability */
/* Center content, comfortable reading width */
.mw-body-content {
.mw-body-content {
   max-width: 960px;
   max-width: 960px;
Line 41: Line 40:
}
}


/* Optional: make worldboxes and other templates blend smoothly */
/* 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;
}