MediaWiki:Common.css: Difference between revisions

From The Evection Project

m Removed tagline.
Added CSS to make Template:Spoiler work.
Line 1: Line 1:
/* CSS placed here will be applied to all skins */
/* CSS placed here will be applied to all skins */
/* This CSS makes Template:Spoiler work */
.spoiler {
background-color: var(--bs-body-color);
border-radius: 0.1em;
transition: 0.125s;
}
.spoiler:click {
background-color: transparent;
transition: 0.125s;
}

Revision as of 15:19, 19 June 2024

/* CSS placed here will be applied to all skins */

/* This CSS makes Template:Spoiler work */
.spoiler {
	background-color: var(--bs-body-color);
	border-radius: 0.1em;
	transition: 0.125s;
}
.spoiler:click {
	background-color: transparent;
	transition: 0.125s;
}