Jump to content

MediaWiki:Common.css: Difference between revisions

From Sun Keeperverse Wiki
Changed typography to parchment feel
 
Set sitewide style, 1st revision
Line 1: Line 1:
/* CSS placed here will be applied to all skins */
/* CSS placed here will be applied to all skins */
body {
/* Keeperverse sitewide style baseline */
   font-family: "Georgia", "Book Antiqua", serif;
 
/* Typography */
body,
.mw-body,
#content {
   font-family: "Inter", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: #2b2414;
   background-color: #f8f5e9;
   background-color: #f8f5e9;
}
/* Headings: give a bookish sans-serif weight */
h1, h2, h3, h4, h5, h6 {
  font-family: "Inter", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-weight: 700;
  color: #3a301a;
}
/* Links: subtle gold accent */
a, a:visited {
  color: #8b6d00;
}
a:hover {
  color: #c09e2b;
  text-decoration: underline;
}
/* Tables, boxes, misc background areas */
pre, code, .infobox, .toc, .navbox {
  background-color: #f3efdc;
  border-color: #c6b480;
}
/* Adjust layout margins slightly for readability */
.mw-body-content {
  max-width: 960px;
  margin: 0 auto;
}
/* Optional: make worldboxes and other templates blend smoothly */
.worldbox {
  font-family: inherit;
}
}

Revision as of 06:31, 30 October 2025

/* CSS placed here will be applied to all skins */
/* Keeperverse sitewide style baseline */

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

/* Headings: give a bookish sans-serif weight */
h1, h2, h3, h4, h5, h6 {
  font-family: "Inter", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-weight: 700;
  color: #3a301a;
}

/* Links: subtle gold accent */
a, a:visited {
  color: #8b6d00;
}
a:hover {
  color: #c09e2b;
  text-decoration: underline;
}

/* Tables, boxes, misc background areas */
pre, code, .infobox, .toc, .navbox {
  background-color: #f3efdc;
  border-color: #c6b480;
}

/* Adjust layout margins slightly for readability */
.mw-body-content {
  max-width: 960px;
  margin: 0 auto;
}

/* Optional: make worldboxes and other templates blend smoothly */
.worldbox {
  font-family: inherit;
}