Jump to content

MediaWiki:Common.css

From Transight Wiki
Revision as of 09:36, 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.
/* Fill main content area with burgundy */
body.page-Main_Page .mw-parser-output,
body.page-Main_Page #content,
body.page-Main_Page .vector-body,
body.page-Main_Page .vector-body .vector-page-titlebar {
    background-color: #800020 !important;
    border: 1px solid #800020 !important;
    color: white !important; /* Optional: make text white for contrast */
}

/* Update headings for visibility */
body.page-Main_Page h1,
body.page-Main_Page h2,
body.page-Main_Page h3 {
    color: #ffffff !important;
}

/* Paragraph and list text */
body.page-Main_Page p,
body.page-Main_Page li {
    color: #f8f8f8 !important;
}

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

/* Device list links */
body.page-Main_Page a {
    color: #ffe6e6; /* Light link color on dark background */
}
body.page-Main_Page a:hover {
    color: #ffffff;
}

/* Optional: box shadow for depth */
body.page-Main_Page .vector-body {
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
}