MediaWiki:Common.css: Difference between revisions

From Artifacts of Capitalism
No edit summary
No edit summary
Line 130: Line 130:
   .artifact-thumb {
   .artifact-thumb {
     margin: 0 0 1em 0;
     margin: 0 0 1em 0;
  }
}
/* ——— Compact Page‐of‐the‐Day styling ——— */
.artifact-preview {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 0.75em;
  max-width: 800px;
  margin: 2em auto;            /* center and give vertical breathing room */
  padding: 0.75em 1em;        /* a little less padding than before */
  border: 1px solid #ddd;
  border-radius: 6px;
  background: #fafafa;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}
.artifact-thumb {
  /* no extra margins needed now that we’re on grid */
}
.artifact-thumb img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 4px;
}
.artifact-text {
  /* keep things tight vertically */
}
.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;
   }
   }
}
}

Revision as of 23:01, 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 {
  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;
}
/* 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');  /* Update with 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;       /* adjust size as needed */
  height: auto;
  margin-right: 10px;
}
/* ————————————————————————
   Page-of-the-Day box
   ———————————————————————— */
.artifact-preview {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  margin: 1.5em 0;
  padding: 1em;
  border: 1px solid #ddd;
  border-radius: 8px;
  background-color: #fafafa;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.artifact-thumb {
  flex: 0 0 200px;
  margin-right: 1em;
}

.artifact-thumb img {
  display: block;
  max-width: 100%;
  border-radius: 4px;
}

.artifact-text {
  flex: 1;
  min-width: 200px;
}

.artifact-text h3 {
  margin: 0 0 0.5em;
  font-size: 1.2em;
  border-bottom: 2px solid #ccc;
  padding-bottom: 0.2em;
}

/* Stack on mobile */
@media (max-width: 600px) {
  .artifact-preview {
    flex-direction: column;
  }
  .artifact-thumb {
    margin: 0 0 1em 0;
  }
}
/* ——— Compact Page‐of‐the‐Day styling ——— */
.artifact-preview {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 0.75em;
  max-width: 800px;
  margin: 2em auto;            /* center and give vertical breathing room */
  padding: 0.75em 1em;         /* a little less padding than before */
  border: 1px solid #ddd;
  border-radius: 6px;
  background: #fafafa;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.artifact-thumb {
  /* no extra margins needed now that we’re on grid */
}

.artifact-thumb img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 4px;
}

.artifact-text {
  /* keep things tight vertically */
}

.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;
  }
}