Jump to content

MediaWiki:Common.css: Difference between revisions

From λ LUMENWARD
No edit summary
No edit summary
Line 84: Line 84:
.mw-logo-text a {
.mw-logo-text a {
   color: #000000 !important;
   color: #000000 !important;
}
/* =========================
  Force header wordmark black (Vector 2022)
  ========================= */
/* Hit the entire logo region, regardless of internal markup */
.mw-logo,
.mw-logo a,
.mw-logo a:visited,
.mw-logo a:hover,
.mw-logo a:active,
.mw-logo .mw-logo-text,
.mw-logo .mw-logo-wordmark,
.mw-logo .mw-logo-wordmark a {
  color: #000 !important;
}
/* Also prevent hover underline/color shift */
.mw-logo a:hover {
  text-decoration: none !important;
}
}

Revision as of 18:06, 13 December 2025


/* =========================
   Lumenward visual overrides
   ========================= */

/* Vector 2022 sidebar */
.mw-sidebar,
.mw-sidebar-container {
  display: none !important;
}

/* Vector 2022 content container */
.mw-page-container-inner,
.mw-content-container {
  max-width: 1100px;
  margin-left: auto !important;
  margin-right: auto !important;
}

/* Vector 2022 page actions (for readers only) */
body:not(.logged-in) .mw-page-actions {
  display: none !important;
}


/* Simplify footer */
#footer-info,
#footer-places,
#footer-icons {
  display: none !important;
}

/* Typography */
body {
  background: #ffffff;
  color: #0a0a0a;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.6;
}

.mw-parser-output {
  font-size: 15px;
}

/* Headings */
h1, h2, h3, h4 {
  font-weight: 700;
  letter-spacing: 0.04em;
}

h2 {
  text-transform: uppercase;
  font-size: 13px;
  color: #444;
}

/* De-emphasize references */
ol.references,
.references {
  font-size: 12px;
  color: #666;
}

sup.reference {
  display: none;
}

/* =========================
   Lumenward text logo
   ========================= */

.mw-logo-text {
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

/* =========================
   Lumenward logo color
   ========================= */

/* Force logo text to black */
.mw-logo-text,
.mw-logo-text a {
  color: #000000 !important;
}

/* =========================
   Force header wordmark black (Vector 2022)
   ========================= */

/* Hit the entire logo region, regardless of internal markup */
.mw-logo,
.mw-logo a,
.mw-logo a:visited,
.mw-logo a:hover,
.mw-logo a:active,
.mw-logo .mw-logo-text,
.mw-logo .mw-logo-wordmark,
.mw-logo .mw-logo-wordmark a {
  color: #000 !important;
}

/* Also prevent hover underline/color shift */
.mw-logo a:hover {
  text-decoration: none !important;
}