diff options
| author | soaos <soaos@soaos.dev> | 2025-08-24 03:57:47 -0400 |
|---|---|---|
| committer | soaos <soaos@soaos.dev> | 2025-08-24 03:57:47 -0400 |
| commit | fd13a7095e8a52b67bcbbc56e8ac0c2ee21376dc (patch) | |
| tree | 6c685181e04e669680fb34a8986dd56cdd64438f /heaven | |
| parent | 945a9699f29d869faf64e57f6fc994998730afce (diff) | |
hell page development + heaven page creation
Diffstat (limited to 'heaven')
| -rw-r--r-- | heaven/angel.gif | bin | 0 -> 6866 bytes | |||
| -rw-r--r-- | heaven/angel2.gif | bin | 0 -> 89484 bytes | |||
| -rw-r--r-- | heaven/angel3.gif | bin | 0 -> 8610 bytes | |||
| -rw-r--r-- | heaven/bg.jpg | bin | 0 -> 53321 bytes | |||
| -rw-r--r-- | heaven/everytime_we_touch_nightcore.ogg | bin | 0 -> 1946392 bytes | |||
| -rw-r--r-- | heaven/heaven.css | 24 | ||||
| -rw-r--r-- | heaven/index.html | 31 |
7 files changed, 55 insertions, 0 deletions
diff --git a/heaven/angel.gif b/heaven/angel.gif Binary files differnew file mode 100644 index 0000000..1c591e8 --- /dev/null +++ b/heaven/angel.gif diff --git a/heaven/angel2.gif b/heaven/angel2.gif Binary files differnew file mode 100644 index 0000000..54adc92 --- /dev/null +++ b/heaven/angel2.gif diff --git a/heaven/angel3.gif b/heaven/angel3.gif Binary files differnew file mode 100644 index 0000000..e6aedcb --- /dev/null +++ b/heaven/angel3.gif diff --git a/heaven/bg.jpg b/heaven/bg.jpg Binary files differnew file mode 100644 index 0000000..91a9238 --- /dev/null +++ b/heaven/bg.jpg diff --git a/heaven/everytime_we_touch_nightcore.ogg b/heaven/everytime_we_touch_nightcore.ogg Binary files differnew file mode 100644 index 0000000..3ac875d --- /dev/null +++ b/heaven/everytime_we_touch_nightcore.ogg diff --git a/heaven/heaven.css b/heaven/heaven.css new file mode 100644 index 0000000..5968745 --- /dev/null +++ b/heaven/heaven.css @@ -0,0 +1,24 @@ +html { + background: url("bg.jpg"); + background-attachment: fixed; + background-size: cover; + image-rendering: pixelated; +} + +#heavenly-host { + width: 100%; + height: 100%; + position: fixed; + top: 0; + left: 0; + z-index: -999; + background-image: url("angel.gif"); + background-size: 128px 128px; + opacity: 0.25; + --pan: 128px -128px; + animation: pan linear 3s infinite; +} + +.section { + background-color: rgba(from var(--bg-yellow) r g b / 0.5); +} diff --git a/heaven/index.html b/heaven/index.html new file mode 100644 index 0000000..e8b40b1 --- /dev/null +++ b/heaven/index.html @@ -0,0 +1,31 @@ +<!DOCTYPE html> + +<html lang="en"> + +<head> + <title>hell</title> + <link rel="icon" href="smallfire.gif"> + <link rel="preload" href="/assets/unifont.woff2" as="font" type="font/woff2"> + <link rel="preload" href="/assets/unifont_upper.woff2" as="font" type="font/woff2"> + <link rel="stylesheet" href="/style.css"> + <link rel="stylesheet" href="heaven.css"> + <meta charset="UTF-8"> +</head> + +<body> + <div id="heavenly-host"></div> + <div class="centered"> + <details class="holy"> + <summary>🕊🕊🕊 + (please enable autoplay to hear music lol)</summary> + <audio autoplay loop controls> + <source src="everytime_we_touch_nightcore.ogg"> + </audio> + </details> + <h1 class="holy">😇 GOD BLESS YOU FRIEND... YOU ARE IN HEAVEN! 😇</h1> + <div class="huge holy section"> + YOU ARE LOVED <span style="color: var(--red);">💖</span><span style="color: var(--red);">🌹</span> + </div> +</body> + +</html> |
