SpoilerAlert/modules/ext.spoileralert.css
2024-03-20 12:53:44 +01:00

19 lines
234 B
CSS
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

.spoiler {
background-color: black;
color: black;
transition: color 0.5s ease;
cursor: pointer;
}
.spoiler.revealed {
color: white;
}
.spoiler:after {
content: ""
}
.spoiler:before {
content: ""
}