MediaWiki:Common.css: Difference between revisions

From Artifacts of Capitalism
No edit summary
No edit summary
Line 132: Line 132:
   /* darker border */
   /* darker border */
   border: 1px solid rgba(0,0,0,0.2);
   border: 1px solid rgba(0,0,0,0.2);
  /* softer shadow */
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
}

Revision as of 23:13, 14 July 2025

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

/* ── Headings even stronger ── */
h1, h2, h3, h4, h5, h6 {
  font-family: 'EB Garamond', Garamond, serif !important;
  font-weight: 700 !important;
}

/* ── Hide personal tools when logged out ── */
body.anonymous .cmln-personal-tools,
body.anonymous #pt-userpage,
body.anonymous #pt-logout {
  display: none !important;
}

/* 🔥 Kill any “Special pages” link, however injected ── */
a.n-specialpages[href*="Special:SpecialPages"],
#p-specialpages,
li#n-specialpages,
li#t-specialpages,
li#pt-specialpages {
  display: none !important;
}

/* ── Hide MediaWiki default footer icons ── */
.footer-icons {
  display: none !important;
}

/* ── Add custom footer image ── */
#footer {
  position: relative;
}
#footer::after {
  content: "";
  display: block;
  background-image: url('/images/image.png'); /* your path */
  background-repeat: no-repeat;
  background-size: contain;
  width: 120px;
  height: 40px;
  position: absolute;
  right: 20px;
  bottom: 10px;
}
/* Optional tweaks to footer logo */
#footer .mw-logo-icon {
  width: 50px;
  height: auto;
  margin-right: 10px;
}

/* ————————————————————————
   Page-of-the-Day preview box
   ———————————————————————— */
.artifact-preview {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 0.75em;
  margin: 2em 0;        /* flush with text above/below */
  padding: 0.75em 1em;
  border: 1px solid #ddd;
  border-radius: 6px;
  background: #fafafa;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}
.artifact-thumb img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 4px;
}
.artifact-text h3 {
  margin: 0 0 0.4em;
  font-size: 1.25em;
  border-bottom: 1px solid #ccc;
  padding-bottom: 0.2em;
}
/* Stack on small screens */
@media (max-width: 600px) {
  .artifact-preview {
    grid-template-columns: 1fr;
  }
}
.artifact-more {
  margin-top: 0.75em;
}
.artifact-more a {
  font-weight: 500;
  text-decoration: none;
}
.artifact-more a:hover {
  text-decoration: underline;
}
.artifact-preview {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 0.75em;
  margin: 2em 0;
  padding: 0.75em 1em;

  /* darker border */
  border: 1px solid rgba(0,0,0,0.2);
}