Jump to content

MediaWiki:Common.css

From λ LUMENWARD
Revision as of 17:38, 13 December 2025 by Kauku (talk | contribs) (Created page with "CSS placed here will be applied to all skins: ========================= Lumenward visual overrides =========================: 1. Hide left sidebar: #mw-panel { display: none !important; } 2. Center content and limit width: #content, .mw-page-container, .mw-body { margin-left: 0 !important; max-width: 1100px; } 3. Hide page tabs (Article / Talk / Edit / History): #p-namespaces, #p-views { display: none !important; } /* 4. Simplif...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Note: After publishing, you may have to bypass your browser's cache to see the changes.

  • Firefox / Safari: Hold Shift while clicking Reload, or press either Ctrl-F5 or Ctrl-R (⌘-R on a Mac)
  • Google Chrome: Press Ctrl-Shift-R (⌘-Shift-R on a Mac)
  • Edge: Hold Ctrl while clicking Refresh, or press Ctrl-F5.
/* CSS placed here will be applied to all skins */
/* =========================
   Lumenward visual overrides
   ========================= */

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

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

/* 3. Hide page tabs (Article / Talk / Edit / History) */
#p-namespaces,
#p-views {
  display: none !important;
}

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

/* 5. 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;
}

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

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

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

sup.reference {
  display: none;
}