diff --git a/src/scss/waltuh/components/_marks.scss b/src/scss/waltuh/components/_marks.scss index d259d67..076a211 100644 --- a/src/scss/waltuh/components/_marks.scss +++ b/src/scss/waltuh/components/_marks.scss @@ -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; + } +}