summaryrefslogtreecommitdiff
path: root/hell/hell.css
diff options
context:
space:
mode:
authorsoaos <soaos@soaos.dev>2025-08-22 00:49:07 -0400
committersoaos <soaos@soaos.dev>2025-08-22 00:49:07 -0400
commit945a9699f29d869faf64e57f6fc994998730afce (patch)
tree1539defee1a2097fe25ae4f8279e758e14fc053f /hell/hell.css
parentb40a0f0d16f559d4372722deb72566d6bebe147d (diff)
created "hell page"
Diffstat (limited to 'hell/hell.css')
-rw-r--r--hell/hell.css33
1 files changed, 33 insertions, 0 deletions
diff --git a/hell/hell.css b/hell/hell.css
new file mode 100644
index 0000000..4d2231c
--- /dev/null
+++ b/hell/hell.css
@@ -0,0 +1,33 @@
+.section {
+ background-color: none;
+}
+
+html {
+ background: url("bg.jpg");
+ background-attachment: fixed;
+ background-size: cover;
+ image-rendering: pixelated;
+}
+
+@keyframes fire
+{
+0% {text-shadow: 0 0 20px #fefcc9,
+ 10px -10px 30px #feec85,
+ -20px -20px 40px #ffae34,
+ 20px -40px 50px #ec760c,
+ -20px -60px 60px #cd4606,
+ 0 -80px 70px #973716,
+ 10px -90px 80px #451b0e;}
+100% {text-shadow: 0 0 20px #fefcc9,
+ 10px -10px 30px #fefcc9,
+ -20px -20px 40px #feec85,
+ 22px -42px 60px #ffae34,
+ -22px -58px 50px #ec760c,
+ 0 -82px 80px #cd4606,
+ 10px -90px 80px #973716;}
+}
+
+.hellfire {
+ color: var(--orange);
+ animation: fire 1s ease-in-out infinite alternate;
+}