MediaWiki:Common.css: Difference between revisions
Appearance
No edit summary |
Fix mobile horizontal scrolling: add overflow-x hidden, constrain pre/table widths, stack infobox |
||
| Line 31: | Line 31: | ||
/* === BASE === */ | /* === BASE === */ | ||
html { | |||
overflow-x: hidden; | |||
} | |||
body { | body { | ||
background: var(--bg); | background: var(--bg); | ||
| Line 37: | Line 41: | ||
font-size: 1rem; | font-size: 1rem; | ||
line-height: 1.6; | line-height: 1.6; | ||
font-feature-settings: 'kern' 1, 'liga' 1, 'calt' 1, 'onum' 1; | font-feature-settings: 'kern' 1, 'liga' 1, 'calt' 1, 'onum' 1; | ||
font-variant-ligatures: common-ligatures contextual; | font-variant-ligatures: common-ligatures contextual; | ||
| Line 44: | Line 47: | ||
text-rendering: optimizeLegibility; | text-rendering: optimizeLegibility; | ||
margin: 0; | margin: 0; | ||
overflow-x: hidden; | |||
} | } | ||
| Line 70: | Line 74: | ||
} | } | ||
/* === TYPOGRAPHY | /* === TYPOGRAPHY === */ | ||
h1, h2, h3, h4, h5, h6 { | h1, h2, h3, h4, h5, h6 { | ||
font-family: var(--font-body); | font-family: var(--font-body); | ||
| Line 112: | Line 116: | ||
} | } | ||
.mw-body a:hover { | .mw-body a:hover { border-color: var(--fg); } | ||
} | |||
.mw-body a.new { | .mw-body a.new { | ||
| Line 129: | Line 131: | ||
} | } | ||
/* === CODE | /* === CODE === */ | ||
code, pre { | code, pre { | ||
font-family: var(--font-mono); | font-family: var(--font-mono); | ||
| Line 139: | Line 141: | ||
} | } | ||
code { padding: 1px 4px; } | code { | ||
padding: 1px 4px; | |||
word-break: break-word; | |||
} | |||
pre { | pre { | ||
| Line 145: | Line 150: | ||
margin: 1rem 0; | margin: 1rem 0; | ||
overflow-x: auto; | overflow-x: auto; | ||
-webkit-overflow-scrolling: touch; | |||
line-height: 1.4; | line-height: 1.4; | ||
max-width: 100%; | |||
} | } | ||
| Line 162: | Line 169: | ||
padding: 0.375rem 0.5rem; | padding: 0.375rem 0.5rem; | ||
text-align: left; | text-align: left; | ||
word-break: break-word; | |||
} | } | ||
| Line 180: | Line 188: | ||
.mw-body li { margin-bottom: 0.25rem; } | .mw-body li { margin-bottom: 0.25rem; } | ||
/* === TOC | /* === TOC === */ | ||
#toc, .toc { | #toc, .toc { | ||
display: inline-block; | display: inline-block; | ||
| Line 211: | Line 219: | ||
} | } | ||
/* === EDIT LINKS | /* === EDIT LINKS === */ | ||
#p-views, #p-cactions { | #p-views, #p-cactions { | ||
margin: 0.5rem 0; | margin: 0.5rem 0; | ||
| Line 253: | Line 261: | ||
.mw-editsection a { border: none; color: var(--fg-muted); } | .mw-editsection a { border: none; color: var(--fg-muted); } | ||
/* === CATEGORIES | /* === CATEGORIES === */ | ||
#catlinks { | #catlinks { | ||
display: block; | display: block; | ||
| Line 271: | Line 279: | ||
} | } | ||
#catlinks a:hover { | #catlinks a:hover { color: var(--fg-secondary); } | ||
} | |||
/* === SPECIAL PAGES === */ | /* === SPECIAL PAGES === */ | ||
| Line 338: | Line 344: | ||
#searchInput::placeholder { color: var(--fg-muted); } | #searchInput::placeholder { color: var(--fg-muted); } | ||
/* === INFOBOXES === */ | /* === INFOBOXES === */ | ||
| Line 386: | Line 378: | ||
} | } | ||
/* Hide empty catlinks on Main Page */ | |||
body.page-Main_Page #catlinks { display: none; } | |||
/* ============================================ | |||
MOBILE STYLES - Fix horizontal scrolling | |||
============================================ */ | |||
@media (max-width: 768px) { | |||
.mw-body { | |||
padding: 1rem 0.75rem; | |||
max-width: 100vw; | |||
overflow-x: hidden; | |||
} | |||
.mw-body h1 { font-size: 1.5rem; } | |||
.mw-body h2 { font-size: 1.125rem; } | |||
#p-views ul, #p-cactions ul { | |||
flex-direction: column; | |||
gap: 0.5rem; | |||
} | |||
#toc, .toc { | |||
max-width: 100%; | |||
display: block; | |||
} | |||
/* Code blocks - contained scroll */ | |||
pre { | |||
max-width: calc(100vw - 1.5rem); | |||
font-size: 0.75rem; | |||
padding: 0.75rem; | |||
white-space: pre; | |||
word-break: normal; | |||
overflow-x: auto; | |||
} | |||
/* Inline code - allow wrapping */ | |||
code { | |||
word-break: break-all; | |||
} | |||
/* Tables - horizontal scroll wrapper */ | |||
.wikitable { | |||
display: block; | |||
max-width: calc(100vw - 1.5rem); | |||
overflow-x: auto; | |||
-webkit-overflow-scrolling: touch; | |||
} | |||
.wikitable th, .wikitable td { | |||
white-space: nowrap; | |||
min-width: 80px; | |||
} | |||
/* Infobox - stack on mobile */ | |||
.infobox { | |||
float: none; | |||
width: 100%; | |||
margin: 1rem 0; | |||
} | |||
} | |||
/* Extra small screens */ | |||
@media (max-width: 480px) { | |||
.mw-body { | |||
padding: 0.75rem 0.5rem; | |||
} | |||
pre { | |||
max-width: calc(100vw - 1rem); | |||
font-size: 0.7rem; | |||
padding: 0.5rem; | |||
} | |||
.wikitable { | |||
max-width: calc(100vw - 1rem); | |||
font-size: 0.7rem; | |||
} | |||
} | |||
Revision as of 17:12, 26 January 2026
/* EJ Fox Archive - Matched to website2 */
:root {
/* Typography - Match website2 exactly */
--font-body: 'Georgia', 'Times New Roman', 'Droid Serif', 'Times', 'Source Serif Pro', serif;
--font-mono: ui-monospace, 'SF Mono', Monaco, monospace;
/* Colors - Tailwind zinc, warm tones */
--bg: #fafafa;
--bg-alt: #f4f4f5;
--fg: #1a1a1a; /* warm near-black */
--fg-secondary: #52525b; /* zinc-600 */
--fg-muted: #71717a; /* zinc-500 */
--border: #e4e4e7; /* zinc-200 */
--red: #dc2626;
--max-w: 65ch;
}
@media (prefers-color-scheme: dark) {
:root {
--bg: #0a0a0a; /* warm near-black */
--bg-alt: #18181b; /* zinc-900 */
--fg: #f5f5f4; /* warmer off-white */
--fg-secondary: #a1a1aa; /* zinc-400 */
--fg-muted: #71717a; /* zinc-500 */
--border: #3f3f46; /* zinc-700 */
--red: #f87171;
}
}
/* === BASE === */
html {
overflow-x: hidden;
}
body {
background: var(--bg);
color: var(--fg);
font-family: var(--font-body);
font-size: 1rem;
line-height: 1.6;
font-feature-settings: 'kern' 1, 'liga' 1, 'calt' 1, 'onum' 1;
font-variant-ligatures: common-ligatures contextual;
font-variant-numeric: oldstyle-nums;
-webkit-font-smoothing: antialiased;
text-rendering: optimizeLegibility;
margin: 0;
overflow-x: hidden;
}
@media (prefers-color-scheme: dark) {
body { font-weight: 375; }
}
/* === LAYOUT === */
#p-search, #p-logo, .mw-wiki-logo, #footer, .printfooter,
#f-poweredbyico, #f-copyrightico, .mw-jump-link, #jump-to-nav {
display: none;
}
.mw-body {
max-width: var(--max-w);
margin: 0 auto;
padding: 1.5rem 1rem;
background: transparent;
border: none;
}
#content {
margin-left: 0;
background: transparent;
border: none;
}
/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5, h6 {
font-family: var(--font-body);
font-weight: 400;
color: var(--fg);
}
.mw-body h1, .firstHeading {
font-size: 2rem;
letter-spacing: -0.025em;
line-height: 1.2;
margin: 0 0 1.5rem;
border: none;
}
.mw-body h2 {
font-size: 1.25rem;
letter-spacing: -0.015em;
margin: 2.5rem 0 0.75rem;
padding-bottom: 0.25rem;
border-bottom: 1px dotted var(--border);
}
.mw-body h3 {
font-size: 1rem;
font-weight: 600;
margin: 1.5rem 0 0.5rem;
}
.mw-body p {
margin-bottom: 1rem;
line-height: 1.6;
}
/* === LINKS === */
.mw-body a {
color: var(--fg);
text-decoration: none;
border-bottom: 1px solid var(--border);
transition: border-color 200ms ease-out;
}
.mw-body a:hover { border-color: var(--fg); }
.mw-body a.new {
color: var(--red);
border-color: var(--red);
opacity: 0.7;
}
.mw-body a.new:hover { opacity: 1; }
.mw-body a.external {
color: var(--fg-secondary);
border-color: var(--fg-secondary);
}
/* === CODE === */
code, pre {
font-family: var(--font-mono);
font-size: 0.875rem;
font-feature-settings: 'lnum' 1, 'tnum' 1;
background: var(--bg-alt);
border: 1px solid var(--border);
border-radius: 2px;
}
code {
padding: 1px 4px;
word-break: break-word;
}
pre {
padding: 1rem;
margin: 1rem 0;
overflow-x: auto;
-webkit-overflow-scrolling: touch;
line-height: 1.4;
max-width: 100%;
}
/* === TABLES === */
.wikitable {
width: 100%;
border-collapse: collapse;
font-family: var(--font-mono);
font-size: 0.8rem;
font-feature-settings: 'lnum' 1, 'tnum' 1;
margin: 1rem 0;
}
.wikitable th, .wikitable td {
border: 1px solid var(--border);
padding: 0.375rem 0.5rem;
text-align: left;
word-break: break-word;
}
.wikitable th {
background: var(--bg-alt);
font-weight: 600;
text-transform: uppercase;
letter-spacing: 0.05em;
font-size: 0.7rem;
}
/* === LISTS === */
.mw-body ul, .mw-body ol {
margin: 0.5rem 0;
padding-left: 1.5rem;
}
.mw-body li { margin-bottom: 0.25rem; }
/* === TOC === */
#toc, .toc {
display: inline-block;
background: transparent;
border: 1px solid var(--border);
padding: 0.5rem 0.75rem;
margin: 0.75rem 0;
font-size: 0.8rem;
max-width: 260px;
}
.toctitle h2 {
font-family: var(--font-mono);
font-size: 0.6rem;
font-weight: 500;
text-transform: uppercase;
letter-spacing: 0.15em;
color: var(--fg-muted);
margin: 0 0 0.5rem;
border: none;
padding: 0;
}
.toc ul { margin: 0; padding-left: 0.75rem; list-style: none; }
.tocnumber {
font-family: var(--font-mono);
font-size: 0.6rem;
color: var(--fg-muted);
font-feature-settings: 'lnum' 1, 'tnum' 1;
}
/* === EDIT LINKS === */
#p-views, #p-cactions {
margin: 0.5rem 0;
background: transparent;
border: none;
}
#p-views ul, #p-cactions ul {
display: flex;
gap: 1rem;
list-style: none;
margin: 0;
padding: 0;
}
#p-views a, #p-cactions a {
font-family: var(--font-mono);
font-size: 0.7rem;
text-transform: uppercase;
letter-spacing: 0.1em;
color: var(--fg-muted);
border-bottom: 1px dotted var(--border);
background: transparent;
}
#p-views a:hover, #p-cactions a:hover {
color: var(--fg);
border-color: var(--fg);
}
.mw-editsection {
font-family: var(--font-mono);
font-size: 0.6rem;
text-transform: uppercase;
letter-spacing: 0.1em;
opacity: 0.3;
margin-left: 0.5rem;
}
.mw-editsection:hover { opacity: 0.6; }
.mw-editsection a { border: none; color: var(--fg-muted); }
/* === CATEGORIES === */
#catlinks {
display: block;
margin-top: 2.5rem;
padding-top: 0.75rem;
border-top: 1px dotted var(--border);
font-family: var(--font-mono);
font-size: 0.6rem;
text-transform: uppercase;
letter-spacing: 0.15em;
color: var(--fg-muted);
}
#catlinks a {
color: var(--fg-muted);
border: none;
}
#catlinks a:hover { color: var(--fg-secondary); }
/* === SPECIAL PAGES === */
.ns-special .mw-body { line-height: 1.4; }
.mw-changeslist-line {
margin-bottom: 0.25rem;
line-height: 1.3;
}
.mw-changeslist-time {
font-family: var(--font-mono);
font-size: 0.75rem;
font-feature-settings: 'lnum' 1, 'tnum' 1;
}
.mw-diff-bytes {
font-family: var(--font-mono);
font-size: 0.65rem;
font-feature-settings: 'lnum' 1, 'tnum' 1;
}
.comment {
font-style: italic;
color: var(--fg-muted);
margin-left: 0.25rem;
}
/* === VECTOR SKIN CLEANUP === */
.vector-page-titlebar,
.vector-page-toolbar,
.vector-menu-tabs,
.vector-menu-content,
#p-views, #p-namespaces, #p-cactions,
.mw-portlet, .vector-tabs, .vector-menu {
border: none;
box-shadow: none;
}
.vector-menu-tabs li, .vector-tabs li, #p-views li {
border: none;
background: transparent;
}
/* === NAVBOXES === */
.wikitable[style*="margin-top"] {
font-size: 0.75rem;
margin-top: 2rem;
}
.wikitable[style*="margin-top"] th {
font-size: 0.7rem;
}
/* === SEARCH === */
#searchInput {
font-family: var(--font-mono);
font-size: 0.875rem;
background: var(--bg-alt);
border: 1px solid var(--border);
padding: 0.25rem 0.5rem;
color: var(--fg);
}
#searchInput::placeholder { color: var(--fg-muted); }
/* === INFOBOXES === */
.infobox {
float: right;
width: 240px;
margin: 0 0 1rem 1rem;
border: 1px solid var(--border);
background: var(--bg-alt);
font-size: 0.8rem;
padding: 0.5rem;
}
.infobox th {
font-family: var(--font-mono);
font-size: 0.65rem;
text-transform: uppercase;
letter-spacing: 0.1em;
text-align: left;
padding: 0.25rem;
font-weight: 600;
}
.infobox td { padding: 0.25rem; }
/* === SUBTITLE/META === */
#siteSub, #contentSub, .mw-content-subtitle {
font-family: var(--font-mono);
font-size: 0.65rem;
text-transform: uppercase;
letter-spacing: 0.1em;
color: var(--fg-muted);
opacity: 0.6;
}
/* Hide empty catlinks on Main Page */
body.page-Main_Page #catlinks { display: none; }
/* ============================================
MOBILE STYLES - Fix horizontal scrolling
============================================ */
@media (max-width: 768px) {
.mw-body {
padding: 1rem 0.75rem;
max-width: 100vw;
overflow-x: hidden;
}
.mw-body h1 { font-size: 1.5rem; }
.mw-body h2 { font-size: 1.125rem; }
#p-views ul, #p-cactions ul {
flex-direction: column;
gap: 0.5rem;
}
#toc, .toc {
max-width: 100%;
display: block;
}
/* Code blocks - contained scroll */
pre {
max-width: calc(100vw - 1.5rem);
font-size: 0.75rem;
padding: 0.75rem;
white-space: pre;
word-break: normal;
overflow-x: auto;
}
/* Inline code - allow wrapping */
code {
word-break: break-all;
}
/* Tables - horizontal scroll wrapper */
.wikitable {
display: block;
max-width: calc(100vw - 1.5rem);
overflow-x: auto;
-webkit-overflow-scrolling: touch;
}
.wikitable th, .wikitable td {
white-space: nowrap;
min-width: 80px;
}
/* Infobox - stack on mobile */
.infobox {
float: none;
width: 100%;
margin: 1rem 0;
}
}
/* Extra small screens */
@media (max-width: 480px) {
.mw-body {
padding: 0.75rem 0.5rem;
}
pre {
max-width: calc(100vw - 1rem);
font-size: 0.7rem;
padding: 0.5rem;
}
.wikitable {
max-width: calc(100vw - 1rem);
font-size: 0.7rem;
}
}