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;
}
.force-light-mode {
    color-scheme: light !important;
    filter: none !important;
    background-color: white !important;
}

.force-light-mode * {
    color-scheme: light !important;
    filter: none !important;
}

.fixed-light-colors {
    background-color: white !important;
}

/* Define color themes for both light and dark modes */
:root {
    --color-thr: #E0FFE0; /* Light Mode: Soft Mint */
    --color-lgt: #28A745;
    --color-com: #FFC107;
    --color-str: #FD7E14;
    --color-hvy: #DC3545;
}

@media (prefers-color-scheme: dark) {
    :root {
        --color-thr: #004d00; /* Dark Mode: Deep Green */
        --color-lgt: #008080;
        --color-com: #FF69B4;
        --color-str: #551A8B;
        --color-hvy: #8B0000;
    }
}

.table-custom td {
    transition: background-color 0.3s ease;
}