SpoilerAlert/modules/ext.spoileralert.css

19 lines
234 B
CSS
Raw Permalink Normal View History

2024-03-19 22:33:58 +01:00
.spoiler {
background-color: black;
color: black;
transition: color 0.5s ease;
cursor: pointer;
}
.spoiler.revealed {
color: white;
}
2024-03-20 12:53:44 +01:00
.spoiler:after {
content: ""
}
.spoiler:before {
content: ""
}