This commit is contained in:
Kio 2024-07-26 22:34:57 -04:00
parent b10e6685d0
commit 9a2686397b
3 changed files with 63 additions and 6 deletions

View file

@ -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 shitass = document.getElementById("cute");
const cum = document.getElementById("prostate"); const cum = document.getElementById("prostate");

View file

@ -7,12 +7,21 @@
</head> </head>
<body> <body>
<div id="warning">
<div id="prompt">
Someone decided to be horny.<br />
This website is for those over the age of 18.<br />
<br />
<a href="#" id="coolWithThat">Cool with that?</a> <a href="https://kids.kidzbop.com/">[No]</a>
</div>
</div>
<div id="back"> <div id="back">
</div> </div>
<div id="content"> <div id="content">
<div id="left"> <div id="left">
<span class="lighter plimalgranda"><a href="enhavo.html">Ĉi tiu paĝo estas disponebla ankaŭ en Esperanto.</a></span> <span class="lighter plimalgranda"><a href="enhavo.html">Ĉi tiu paĝo estas disponebla ankaŭ en
Esperanto.</a></span>
<h1>Kyla</h1> <h1>Kyla</h1>
<span class="lighter">shi/hir, foxgirl plushy</span><br> <span class="lighter">shi/hir, foxgirl plushy</span><br>
noun, god of desire<br> noun, god of desire<br>
@ -39,12 +48,15 @@
administrator<br> administrator<br>
<a href="https://kitsunes.club"><img <a href="https://kitsunes.club"><img
src="https://s3.kitsunes.club/storage/bf399313-959c-43e1-a225-0e8e6f71a852.png" height="25px">kitsuclub</a> src="https://s3.kitsunes.club/storage/bf399313-959c-43e1-a225-0e8e6f71a852.png"
height="25px">kitsuclub</a>
<a href="https://kitsunes.gay"><img <a href="https://kitsunes.gay"><img
src="https://cdn.flashfire.site/kitsunesgay/eaf6912c-d95d-4ca5-b6ff-5b1cf2f44cc2.png" height="25px">kitsugay src="https://cdn.flashfire.site/kitsunesgay/eaf6912c-d95d-4ca5-b6ff-5b1cf2f44cc2.png"
height="25px">kitsugay
(nsfw)</a> (nsfw)</a>
<a href="https://kitsunes.chat"><img <a href="https://kitsunes.chat"><img
src="https://s3.kitsunes.club/storage/600e1975-ed4c-4ea5-ba05-caadcc95e003.png" height="25px">kitsuchat</a> src="https://s3.kitsunes.club/storage/600e1975-ed4c-4ea5-ba05-caadcc95e003.png"
height="25px">kitsuchat</a>
<a href="https://status.kitsu.life"><img src="https://status.kitsunes.club/upload/logo1.png?t=1687391965528" <a href="https://status.kitsu.life"><img src="https://status.kitsunes.club/upload/logo1.png?t=1687391965528"
height="25px">kitsustatus</a><br> height="25px">kitsustatus</a><br>
<br> <br>
@ -53,7 +65,8 @@
<br> <br>
social media<br> social media<br>
<a href="https://matrix.to/#/@kio:kitsunes.club">matrix</a> <a href="https://matrix.to/#/@kio:kitsunes.club">matrix</a>
<span><a href="https://kitsunes.club/@kio">fediverse</a><a href="https://kitsunes.gay/@kio">(nsfw)</a></span> <span><a href="https://kitsunes.club/@kio">fediverse</a><a
href="https://kitsunes.gay/@kio">(nsfw)</a></span>
<a href="https://kitsunes.cafe/u/kio">lemmy</a> <a href="https://kitsunes.cafe/u/kio">lemmy</a>
<a href="https://fans.ly/Daikei">fansly</a> <a href="https://fans.ly/Daikei">fansly</a>
<br> <br>
@ -73,4 +86,5 @@
</div> </div>
</body> </body>
</html> </html>

View file

@ -12,6 +12,44 @@ body {
border-radius: 15px; 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 { .plimalgranda {
font-size: 75%; font-size: 75%;
} }