MediaWiki:Common.css

From Artifacts of Capitalism
Revision as of 20:25, 14 July 2025 by Abrano (talk | contribs)

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.
/* Custom ribbon background image */
.p-navbar {
  background-image: url('/images/ribbon.png') !important;
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  background-color: transparent !important;
}
/* Make navbar text black */
.p-navbar,
.p-navbar .nav-link,
.p-navbar .navbar-tool-link,
.p-navbar .navbar-more-tools,
.p-navbar .mw-list-item a {
  color: black !important;
}

/* Optional: make dropdowns and other elements match */
.p-navbar .dropdown-menu a {
  color: black !important;
}

.p-navbar .nav-link:hover,
.p-navbar .nav-link:focus {
  color: #333 !important;
}
/* ── Load EB Garamond with medium & bold weights ── */
@import url('https://fonts.googleapis.com/css2?family=EB+Garamond:wght@400;500;700&display=swap');

/* ── Apply Garamond to body text, slightly bolder ── */
body, .mw-body {
  font-family: 'EB Garamond', Garamond, serif !important;
  font-weight: 500 !important;   /* “medium” weight */
}

/* ── Headings even stronger ── */
h1, h2, h3, h4, h5, h6 {
  font-family: 'EB Garamond', Garamond, serif !important;
  font-weight: 700 !important;   /* “bold” weight */
}
body.anonymous .cmln-personal-tools {
  display: none !important;
}
/* 🔥 FINAL BLOCK to kill 'Special pages' regardless of how it's injected */
a.n-specialpages[href*="Special:SpecialPages"],
#p-specialpages,
li#n-specialpages,
li#t-specialpages,
li#pt-specialpages {
  display: none !important;
}

/* 🔒 Hide user menu dropdown if logged out */
body.anonymous .cmln-personal-tools,
body.anonymous #pt-userpage,
body.anonymous #pt-logout {
  display: none !important;
}