MediaWiki:Common.css

From The Common People
Revision as of 15:04, 23 July 2024 by Control (talk | contribs) (Created page with "→‎CSS placed here will be applied to all skins: body { background-color: black; color: #ADD8E6; →‎Light blue color: font-family: Arial, Helvetica, sans-serif; font-size: 200%; →‎Double the font size: } →‎Ensure links are visible on the dark background: a { color: #00BFFF; →‎Deep sky blue for links: } a:visited { color: #87CEFA; →‎Light sky blue for visited links: } →‎Adjust headings if needed: h1, h2, h3, h4, h5, h6 { c...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

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)
  • Internet Explorer / Edge: Hold Ctrl while clicking Refresh, or press Ctrl-F5
  • Opera: Press Ctrl-F5.
/* CSS placed here will be applied to all skins */
body {
    background-color: black;
    color: #ADD8E6; /* Light blue color */
    font-family: Arial, Helvetica, sans-serif;
    font-size: 200%; /* Double the font size */
}

/* Ensure links are visible on the dark background */
a {
    color: #00BFFF; /* Deep sky blue for links */
}

a:visited {
    color: #87CEFA; /* Light sky blue for visited links */
}

/* Adjust headings if needed */
h1, h2, h3, h4, h5, h6 {
    color: #E0FFFF; /* Light cyan for headings */
}

/* Ensure input fields and buttons are readable */
input, select, textarea, button {
    background-color: #2F4F4F; /* Dark slate gray */
    color: #E0FFFF; /* Light cyan */
    font-size: 100%; /* Reset font size for form elements */
}

/* Adjust the search input if needed */
#searchInput {
    background-color: #2F4F4F;
    color: #E0FFFF;
}