summaryrefslogtreecommitdiff
path: root/style.css
diff options
context:
space:
mode:
Diffstat (limited to 'style.css')
-rw-r--r--style.css28
1 files changed, 7 insertions, 21 deletions
diff --git a/style.css b/style.css
index fbd6e67..e8a9e8d 100644
--- a/style.css
+++ b/style.css
@@ -111,13 +111,6 @@ h3 {
}
@keyframes evilGlow {
- 0% {
- text-shadow: 0 0 5px #f00, /* Red glow */
- 0 0 10px #f00,
- 0 0 20px #f00,
- 0 0 40px #8b0000, /* Darker red for depth */
- 0 0 80px #8b0000;
- }
50% {
text-shadow: 0 0 10px #f00,
0 0 20px #f00,
@@ -125,18 +118,11 @@ h3 {
0 0 80px #8b0000,
0 0 120px #8b0000;
}
- 100% {
- text-shadow: 0 0 5px #f00,
- 0 0 10px #f00,
- 0 0 20px #f00,
- 0 0 40px #8b0000,
- 0 0 80px #8b0000;
- }
}
.evil {
color: var(--red);
- animation: evilGlow 2s infinite alternate;
+ animation: evilGlow 4s linear infinite;
}
a.evil:visited {
@@ -156,12 +142,12 @@ a.evil:hover {
padding-left: 0;
}
-.white-on-red {
- color: white;
- background-color: red;
-}
-
.red-on-white {
color: red;
background-color: white;
-} \ No newline at end of file
+}
+
+.hidden {
+ display: none;
+}
+