MediaWiki:Common.css

From Drug Information

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.
/* CSS placed here will be applied to all skins */
#footer-info-lastmod {
    display: none !important;
}

/* Dark Mode Setup for MediaWiki */
body, #content, #mw-content-text {
    background-color: #121212 !important;
    color: #e0e0e0 !important;
}

/* Ensure headings are readable */
h1, h2, h3, h4, h5, h6 {
    color: #ffffff !important;
}

/* Adjust links for dark mode */
a {
    color: #81d4fa !important;
}

a:visited {
    color: #ce93d8 !important;
}

/* Ensure tables are readable in dark mode */
table, th, td {
    background-color: #1e1e1e !important;
    color: #e0e0e0 !important;
    border-color: #333333 !important;
}

/* Input fields and buttons */
input, textarea, select, button {
    background-color: #2c2c2c !important;
    color: #e0e0e0 !important;
    border: 1px solid #444444 !important;
}