You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

26 lines
550 B

// this is the least janky way to do image spoilers without JS :skull:
.spoiler {
input {
display: none;
}
input:not(:checked) ~ .spoiler-content {
display: none;
}
input:checked, input:checked ~ label {
display: none;
}
label {
color:#47FF58;
background-color: #252529;
padding: .25em .5em .25em .5em;
border-radius: 5px;
&:hover {
background-color: #2b2b2f;
}
&:active {
background-color:#404047;
}
}
}