Jump to content

MediaWiki:Common.css: Difference between revisions

From Archive
Polish: add box-sizing reset, fix table cell wrapping (allow word-break instead of nowrap)
Restore search, add header spacing (3rem top padding), style search box
Line 59: Line 59:


/* === LAYOUT === */
/* === LAYOUT === */
#p-search, #p-logo, .mw-wiki-logo, #footer, .printfooter,
#p-logo, .mw-wiki-logo, #footer, .printfooter,
#f-poweredbyico, #f-copyrightico, .mw-jump-link, #jump-to-nav {
#f-poweredbyico, #f-copyrightico, .mw-jump-link, #jump-to-nav {
   display: none;
   display: none;
Line 67: Line 67:
   max-width: var(--max-w);
   max-width: var(--max-w);
   margin: 0 auto;
   margin: 0 auto;
   padding: 1.5rem 1rem;
   padding: 3rem 1rem 1.5rem;
   background: transparent;
   background: transparent;
   border: none;
   border: none;
Line 338: Line 338:


/* === SEARCH === */
/* === SEARCH === */
#p-search {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0.5rem 1rem;
}
#p-search h3 {
  display: none;
}
#p-search form {
  display: flex;
  gap: 0.5rem;
}
#searchInput {
#searchInput {
   font-family: var(--font-mono);
   font-family: var(--font-mono);
Line 343: Line 358:
   background: var(--bg-alt);
   background: var(--bg-alt);
   border: 1px solid var(--border);
   border: 1px solid var(--border);
   padding: 0.25rem 0.5rem;
   padding: 0.375rem 0.75rem;
   color: var(--fg);
   color: var(--fg);
  width: 100%;
  max-width: 300px;
}
#searchInput:focus {
  outline: none;
  border-color: var(--fg-muted);
}
}


#searchInput::placeholder { color: var(--fg-muted); }
#searchInput::placeholder { color: var(--fg-muted); }
#searchButton, .searchButton {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  padding: 0.375rem 0.75rem;
  color: var(--fg-muted);
  cursor: pointer;
}
#searchButton:hover, .searchButton:hover {
  border-color: var(--fg);
  color: var(--fg);
}


/* === INFOBOXES === */
/* === INFOBOXES === */
Line 390: Line 429:
@media (max-width: 768px) {
@media (max-width: 768px) {
   .mw-body {
   .mw-body {
     padding: 1rem 0.75rem;
     padding: 2rem 0.75rem 1rem;
     max-width: 100vw;
     max-width: 100vw;
     overflow-x: hidden;
     overflow-x: hidden;
Line 397: Line 436:
   .mw-body h1 { font-size: 1.5rem; }
   .mw-body h1 { font-size: 1.5rem; }
   .mw-body h2 { font-size: 1.125rem; }
   .mw-body h2 { font-size: 1.125rem; }
  #p-search {
    padding: 0.5rem 0.75rem;
  }
  #searchInput {
    max-width: 100%;
  }


   #p-views ul, #p-cactions ul {
   #p-views ul, #p-cactions ul {

Revision as of 17:18, 26 January 2026

/* EJ Fox Archive - Matched to website2 */

*, *::before, *::after {
  box-sizing: border-box;
}

: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-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: 3rem 1rem 1.5rem;
  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 === */
#p-search {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0.5rem 1rem;
}

#p-search h3 {
  display: none;
}

#p-search form {
  display: flex;
  gap: 0.5rem;
}

#searchInput {
  font-family: var(--font-mono);
  font-size: 0.875rem;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  padding: 0.375rem 0.75rem;
  color: var(--fg);
  width: 100%;
  max-width: 300px;
}

#searchInput:focus {
  outline: none;
  border-color: var(--fg-muted);
}

#searchInput::placeholder { color: var(--fg-muted); }

#searchButton, .searchButton {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  padding: 0.375rem 0.75rem;
  color: var(--fg-muted);
  cursor: pointer;
}

#searchButton:hover, .searchButton:hover {
  border-color: var(--fg);
  color: var(--fg);
}

/* === 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: 2rem 0.75rem 1rem;
    max-width: 100vw;
    overflow-x: hidden;
  }

  .mw-body h1 { font-size: 1.5rem; }
  .mw-body h2 { font-size: 1.125rem; }

  #p-search {
    padding: 0.5rem 0.75rem;
  }

  #searchInput {
    max-width: 100%;
  }

  #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 {
    min-width: 60px;
    max-width: 200px;
    word-break: break-word;
  }

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