horny
This commit is contained in:
parent
b10e6685d0
commit
9a2686397b
3 changed files with 63 additions and 6 deletions
|
@ -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");
|
||||
|
||||
|
|
|
@ -7,12 +7,21 @@
|
|||
</head>
|
||||
|
||||
<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>
|
||||
<div id="content">
|
||||
<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>
|
||||
<span class="lighter">shi/hir, foxgirl plushy</span><br>
|
||||
noun, god of desire<br>
|
||||
|
@ -39,12 +48,15 @@
|
|||
|
||||
administrator<br>
|
||||
<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
|
||||
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>
|
||||
<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"
|
||||
height="25px">kitsustatus</a><br>
|
||||
<br>
|
||||
|
@ -53,7 +65,8 @@
|
|||
<br>
|
||||
social media<br>
|
||||
<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://fans.ly/Daikei">fansly</a>
|
||||
<br>
|
||||
|
@ -73,4 +86,5 @@
|
|||
|
||||
</div>
|
||||
</body>
|
||||
|
||||
</html>
|
|
@ -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%;
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue