summaryrefslogtreecommitdiff
path: root/hell/hell.css
diff options
context:
space:
mode:
authorsoaos <soaos@soaos.dev>2025-08-24 03:57:47 -0400
committersoaos <soaos@soaos.dev>2025-08-24 03:57:47 -0400
commitfd13a7095e8a52b67bcbbc56e8ac0c2ee21376dc (patch)
tree6c685181e04e669680fb34a8986dd56cdd64438f /hell/hell.css
parent945a9699f29d869faf64e57f6fc994998730afce (diff)
hell page development + heaven page creation
Diffstat (limited to 'hell/hell.css')
-rw-r--r--hell/hell.css41
1 files changed, 37 insertions, 4 deletions
diff --git a/hell/hell.css b/hell/hell.css
index 4d2231c..31119ed 100644
--- a/hell/hell.css
+++ b/hell/hell.css
@@ -1,7 +1,3 @@
-.section {
- background-color: none;
-}
-
html {
background: url("bg.jpg");
background-attachment: fixed;
@@ -31,3 +27,40 @@ html {
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;
+}