Jump to content

MediaWiki:Common.css: Difference between revisions

From λ LUMENWARD
No edit summary
No edit summary
Line 1: Line 1:
body { background: #ff00ff !important; }
/* =========================
/* =========================
   Lumenward visual overrides
   Lumenward visual overrides

Revision as of 17:47, 13 December 2025

body { background: #ff00ff !important; }

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

/* Hide left sidebar */
#mw-panel {
  display: none !important;
}

/* Center content */
#content,
.mw-page-container,
.mw-body {
  margin-left: 0 !important;
  max-width: 1100px;
}

/* Hide page tabs for non-logged-in users */
body:not(.logged-in) #p-namespaces,
body:not(.logged-in) #p-views {
  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;
}