MediaWiki:Common.css
From Artifacts of Capitalism
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.
/* ── Load EB Garamond from Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=EB+Garamond:wght@400;500;700&display=swap');
/* ── Apply Garamond to all body text and lists ── */
html, body, .mw-body, p, ul, ol, dl, li {
font-family: 'EB Garamond', Garamond, serif !important;
font-weight: 500 !important; /* medium weight */
}
/* ── Use the bolder cut for all headings ── */
h1, h2, h3, h4, h5, h6 {
font-family: 'EB Garamond', Garamond, serif !important;
font-weight: 700 !important; /* bold weight */
}
/* ── 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;
}
/* ── Sidebar group header: bigger & bolder ── */
#p-Artifact-types .mw-portlet-heading {
font-size: 1.25em !important; /* tweak until it’s the size you like */
font-weight: 700 !important; /* force bold */
}
/* ── 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);
}
/* ── Bump up the header dropdown label ── */
#mw-navigation .p-Artifacts-of-Capitalism-toggle {
font-size: 1.2rem !important;
font-weight: 700 !important;
}
/* ── Bump up the sidebar portlet heading ── */
#p-Artifacts-of-Capitalism .mw-portlet-heading,
#p-Artifacts-of-Capitalism h3 {
font-size: 1.25em !important;
font-weight: 700 !important;
line-height: 1.2 !important;
}