From bbbb10178f972ee9a9e66726c2bf58b570428d48 Mon Sep 17 00:00:00 2001 From: Ruben Date: Mon, 24 Feb 2025 11:20:20 -0600 Subject: [PATCH] add disappearing page --- subdomain/disappearing/index.html | 49 +++++++++++++++++++++++++++++++ subdomain/disappearing/style.css | 37 +++++++++++++++++++++++ 2 files changed, 86 insertions(+) create mode 100644 subdomain/disappearing/index.html create mode 100644 subdomain/disappearing/style.css diff --git a/subdomain/disappearing/index.html b/subdomain/disappearing/index.html new file mode 100644 index 0000000..2650d8a --- /dev/null +++ b/subdomain/disappearing/index.html @@ -0,0 +1,49 @@ + + + + + + + disappearing . + + + + + + + + + +

+ oh, hello there. +

+ +

+ you seem... lost. but, welcome. to my home. +

+ +

+ i know, not the most interesting place here, but things get lost here. sometimes to be forgotten... but i keep track of those here. occasionally, things sometimes appear out of nowhere before vanishing. +

+ +

+ i'd do decorating around this place, but why bother. i think it's cozy, anyways. ^^ +

+ +

+ anyways, you probably want to know what's here, for the time being anyways. what's still here: +

+ + + +

+ as of currently, nothing that i consider of value to list here has been lost yet. +

+ +

anyways, thanks for sticking around, kiddo. but you probably want to get out of here, don't ya? you should head back.

+ +

oh, my name? uh, yeah. it's ... i don't have a name.

+ \ No newline at end of file diff --git a/subdomain/disappearing/style.css b/subdomain/disappearing/style.css new file mode 100644 index 0000000..a415879 --- /dev/null +++ b/subdomain/disappearing/style.css @@ -0,0 +1,37 @@ +:root { + --bg: #0a0a0a; + --fg: #b4b4b4; + --link: #9fc2cf; +} + +body { + background-color: var(--bg); + color: var(--fg); + font-family: 'JetBrains Mono', monospace, system-ui, sans-serif; + font-size: 1.125rem; + max-width: 55rem; + align-self: center; + margin-left: auto; + margin-right: auto; +} + +p, a, li { + font-size: 1.125rem; + margin-bottom: 2rem; +} + +h1 { + font-size: 2rem; + margin-top: 5rem; +} + +p:last-child { + background-image: linear-gradient(to right, var(--fg) 15%, transparent 32%); + color: transparent; + background-clip: text; + margin-bottom: 10rem; +} + +a { + color: var(--link); +} \ No newline at end of file