diff options
Diffstat (limited to 'hell/hell.css')
| -rw-r--r-- | hell/hell.css | 41 |
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; +} |
