Toggle menu
155
274
1
2.9K
DemocracyCraft Wiki
Toggle preferences menu
Toggle personal menu
Not logged in
Your IP address will be publicly visible if you make any edits.

Template:Infobox styles.css

Template page
Revision as of 03:47, 27 March 2025 by JVC3 (talk | contribs) (still testing css)
/* For explicit client preference dark mode */
@media screen {
  .skin-theme-clientpref-night .infobox {
    background-color: red;
  }
}

/* For OS-level dark mode preference */
@media screen and (prefers-color-scheme: dark) {
  .skin-theme-clientpref-os .infobox {
    background-color: red;
  }
}