feat(markdown): add spoiler text

This commit is contained in:
Tom (plebeius.eth)
2025-01-28 15:12:39 +01:00
parent cbed83cd10
commit 9a08b9572b
3 changed files with 71 additions and 5 deletions
+10
View File
@@ -26,6 +26,16 @@ hr {
color: var(--post-greentext-color);
}
.spoilertext {
color: #000 !important;
background: #000 !important;
text-decoration: none;
}
.spoilertext:hover {
color: #fff !important;
}
.capitalize {
text-transform: capitalize;
}