Spoiler tag

This commit is contained in:
Emilia Allison 2023-08-02 13:39:26 -04:00
parent bea03194cc
commit 6b06289882
Signed by: emilia
GPG Key ID: 7A3F8997BFE894E0
1 changed files with 14 additions and 0 deletions

View File

@ -54,3 +54,17 @@ span.waltuh-gradient-underline {
width: 80%;
}
}
span.spoiler {
background: black;
color: transparent;
user-select: none;
transition: background 100ms ease,
color 100ms ease;
&:hover, &:active, &:focus {
background: inherit;
color: inherit;
}
}