MediaWiki:Common.css

From The Evection Project

Revision as of 15:49, 19 June 2024 by EDKastin (talk | contribs) (Updated comment.)
(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)
  • 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 */

/* This CSS makes redaction for spoilers. Surround spoilers in <span class="spoiler"></span> tags to engage the effect, and click and hold on redacted text to see it.  */
.spoiler {
	background-color: var(--bs-body-color);
	border-radius: 0.1em;
	transition: 0.125s;
}
.spoiler:active {
	background-color: transparent;
	transition: 0.125s;
}