Jump to content

MediaWiki:Common.css

From Transight Wiki
Revision as of 09:40, 19 June 2025 by Editor (talk | contribs)

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.
/* Keep sidebar, header, search bar, and toolbar white */
body.page-Main_Page {
    background-color: white !important;
}

/* Apply burgundy background only inside main content area */
body.page-Main_Page .mw-parser-output {
    background-color: #800020 !important;
    border: 1px solid #800020 !important;
    padding: 20px;
    border-radius: 8px;
    color: white !important;
}

/* Headings and text color inside the content box */
body.page-Main_Page .mw-parser-output h1,
body.page-Main_Page .mw-parser-output h2,
body.page-Main_Page .mw-parser-output h3,
body.page-Main_Page .mw-parser-output p,
body.page-Main_Page .mw-parser-output li {
    color: #ffffff !important;
}

/* Expand / Collapse button styling */
body.page-Main_Page .mw-collapsible-toggle {
    background-color: #ffffff;
    color: #800020;
    border: 2px solid #800020;
    font-weight: bold;
}

/* Optional: lighten device list link colors */
body.page-Main_Page .mw-parser-output a {
    color: #ffcccc;
}
body.page-Main_Page .mw-parser-output a:hover {
    color: #ffffff;
}