MediaWiki:Common.css

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.
/* WikiPartner brand styles */

:root {
    --wp-teal: #0F6B65;
    --wp-gold: #E8A33D;
    --wp-blue: #3E7CB1;
    --wp-navy: #12233F;
    --wp-charcoal: #2B2B2B;
    --wp-cream: #FAF7F2;
}

/* Main text */
body {
    color: var(--wp-charcoal);
    font-family: Inter, Arial, sans-serif;
}

/* Article headings */
.mw-parser-output h1,
.mw-parser-output h2,
.mw-parser-output h3,
.firstHeading {
    font-family: "Source Serif 4", Georgia, serif;
    color: var(--wp-navy);
}

/* Links */
a {
    color: var(--wp-teal);
}

a:hover {
    color: var(--wp-blue);
}

/* Infobox styling */
.infobox {
    background: var(--wp-cream) !important;
    border: 1px solid #d6d6d6 !important;
}

.infobox th {
    background: #eef6f5;
    color: var(--wp-navy);
}

/* Main content area */
.mw-body {
    background: #ffffff;
}

/* Selected tabs and accents */
.vector-page-tools-landmark,
.vector-main-menu-landmark {
    color: var(--wp-teal);
}