diff options
| author | Jakob L. Kreuze | 2020-01-11 13:06:35 -0500 |
|---|---|---|
| committer | Jakob L. Kreuze | 2020-01-11 13:06:35 -0500 |
| commit | 947bdb343180b20aa85eb529764a68a73fdcff9a (patch) | |
| tree | 5b937a24625c70e61b71e96db779d23ab6fbf160 | |
| parent | 66788460501acba762e9150c33218c289b794969 (diff) | |
Add CSS for spoilered text.
| -rw-r--r-- | haunt/static/css/style.css | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/haunt/static/css/style.css b/haunt/static/css/style.css index 7685be1..a198a89 100644 --- a/haunt/static/css/style.css +++ b/haunt/static/css/style.css @@ -303,3 +303,14 @@ button { .label-bad { background-color: #dc3545; } + +/* Spoilered text. */ + +.spoiler { + background-color: #2e3436; + color: #2e3436; +} + +.spoiler:hover { + background-color: #f6f5f4; +} |