diff --git a/docs/code.js b/docs/code.js index 05062dc..e53b73b 100644 --- a/docs/code.js +++ b/docs/code.js @@ -69,6 +69,11 @@ const strings = { ` } +document.getElementById("coolWithThat").addEventListener("click", () => { + document.getElementById("warning").classList.add("fadeout") + setTimeout(() => {document.getElementById("warning").remove()}, 1000) +}) + const shitass = document.getElementById("cute"); const cum = document.getElementById("prostate"); diff --git a/docs/index.html b/docs/index.html index 9a3548b..2bf1c1a 100644 --- a/docs/index.html +++ b/docs/index.html @@ -7,12 +7,21 @@ +
+
+ Someone decided to be horny.
+ This website is for those over the age of 18.
+
+ Cool with that? [No] +
+
- Ĉi tiu paĝo estas disponebla ankaŭ en Esperanto. + Ĉi tiu paĝo estas disponebla ankaŭ en + Esperanto.

Kyla

shi/hir, foxgirl plushy
noun, god of desire
@@ -39,12 +48,15 @@ administrator
kitsuclub + src="https://s3.kitsunes.club/storage/bf399313-959c-43e1-a225-0e8e6f71a852.png" + height="25px">kitsuclub kitsugay + src="https://cdn.flashfire.site/kitsunesgay/eaf6912c-d95d-4ca5-b6ff-5b1cf2f44cc2.png" + height="25px">kitsugay (nsfw) kitsuchat + src="https://s3.kitsunes.club/storage/600e1975-ed4c-4ea5-ba05-caadcc95e003.png" + height="25px">kitsuchat kitsustatus

@@ -53,7 +65,8 @@
social media
matrix - fediverse(nsfw) + fediverse(nsfw) lemmy fansly
@@ -73,4 +86,5 @@
- + + \ No newline at end of file diff --git a/docs/style.css b/docs/style.css index 0390c19..0f65d38 100644 --- a/docs/style.css +++ b/docs/style.css @@ -12,6 +12,44 @@ body { border-radius: 15px; } +#warning { + display: flex; + background: black; + color: white; + position:absolute; + z-index: 1000; + height: 100vh; + width: 100vw; + justify-content: center; + align-items: center; + text-align: center; +} + +#prompt a { + color: white; +} + +#prompt { + padding: 2vw; + background: #303030 +} + +.fadeout { + animation-name: fadeout; + animation-duration: 1000ms; + animation-fill-mode: forwards; +} + +@keyframes fadeout { + from { + opacity: 1; + } + to { + opacity: 0; + } +} + + .plimalgranda { font-size: 75%; }