summaryrefslogtreecommitdiff
path: root/hell/hell.css
diff options
context:
space:
mode:
authorsoaos <soaos@soaos.dev>2025-11-21 21:14:12 -0500
committersoaos <soaos@soaos.dev>2025-11-21 21:14:12 -0500
commitba76e77d935998e4b128053dcc61d2ed4884cdda (patch)
tree5464dccd475404b509f048f4525193a8ff36a715 /hell/hell.css
parent6e3a7252608197b6571a56c9b07be09f254e8bae (diff)
zola migration
Diffstat (limited to 'hell/hell.css')
-rw-r--r--hell/hell.css66
1 files changed, 0 insertions, 66 deletions
diff --git a/hell/hell.css b/hell/hell.css
deleted file mode 100644
index 31119ed..0000000
--- a/hell/hell.css
+++ /dev/null
@@ -1,66 +0,0 @@
-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;
-}
-
-massive-fucking-background-flame {
- width: 100%;
- height: 100%;
- position: fixed;
- top: 0;
- left: 0;
- z-index: -999;
- background-image: url("smallfire.gif");
- background-size: auto 128px;
- opacity: 0.25;
- --pan: 0 -128px;
- animation: pan linear 3s infinite
-}
-
-a {
- color: black;
-}
-
-#inverted-cross {
- display: inline-block;
- rotate: 180deg;
- transition: rotate 2s, color 0.5s;
- --glow-color: red;
- animation: glow 4s linear infinite;
-}
-
-#inverted-cross:hover {
- rotate: 0deg;
- --glow-color: white;
- color: var(--yellow);
- transition: rotate 2s, color 1s;
-}
-
-.evil {
- color: black;
-}