Jump to content

MediaWiki:Common.css

From Tech 3 Crew Wiki
Revision as of 19:34, 28 January 2026 by Mediawiki (talk | contribs) (Created page with "CSS placed here will be applied to all skins: Light mode default: .theme-light-image { display: inline; } .theme-dark-image { display: none; } Dark mode via OS/browser preference: @media (prefers-color-scheme: dark) { .theme-light-image { display: none; } .theme-dark-image { display: inline; } }")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

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 */
/* Light mode default */
.theme-light-image {
    display: inline;
}
.theme-dark-image {
    display: none;
}

/* Dark mode via OS/browser preference */
@media (prefers-color-scheme: dark) {
    .theme-light-image {
        display: none;
    }
    .theme-dark-image {
        display: inline;
    }
}