MediaWiki:Common.css: Difference between revisions

From The Evection Project

Made tagline visible.
 
m Updated comment.
 
(3 intermediate revisions by the same user not shown)
Line 1: Line 1:
/* CSS placed here will be applied to all skins */
/* CSS placed here will be applied to all skins */


/* Show tagline. */
/* 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.  */
#siteSub {
.spoiler {
    display: block;
background-color: var(--bs-body-color);
border-radius: 0.1em;
transition: 0.125s;
}
.spoiler:active {
background-color: transparent;
transition: 0.125s;
}
}

Latest revision as of 15:49, 19 June 2024

/* 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;
}