More actions
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 */
/* BEGIN: Dark Mode Maths */
/* Here we fix <math> tags for dark modes in Poncho and Citizen skins. */
.poncho-dark-mode .mwe-math-fallback-image-inline,
.poncho-dark-mode .mwe-math-fallback-image-display,
.skin-citizen-dark .mwe-math-fallback-image-inline,
.skin-citizen-dark .mwe-math-fallback-image-display {
filter: hue-rotate(180deg) invert(1);
}
@media (prefers-color-scheme: dark) {
.skin-citizen-auto .mwe-math-fallback-image-inline,
.skin-citizen-auto .mwe-math-fallback-image-display {
filter: hue-rotate(180deg) invert(1);
}
}
/* END: Dark Mode Maths */
/* BEGIN: Disable site subtitles */
#siteSub {
display: none;
}
/* END: Disable site subtitles */