Hexbomb.gay/18redirect.html

63 lines
1.5 KiB
HTML

<!doctype html lang="en">
<head>
<Title>Hex Bomb</Title>
<link rel="stylesheet" href="mainstyles.css">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta charset="UTF-8">
<style>
#textbox{
margin-left: auto;
margin-right: auto;
border-style: double solid solid double;
border-width: 4px 4px 4px 4px;
border-color: white;
display:block;
max-width: 600px;
width: 80%;
text-align: center;
padding: 12px;
padding-top: 20px;
padding-bottom: 50px;
font-size: 1.2rem;
}
button{
margin-top: 50px;
background-color: black;
border: 4px outset rgb(132, 0, 255);
border-radius: 5px;
padding: 2px;
padding-left: 4px;
padding-right: 4px;
color: rgb(132, 0, 255);
font-size: 2rem;
}
.button:hover{
border-color: rgb(207, 16, 255);
color: rgb(207, 16, 255);
background-color: rgb(19, 18, 22);
}
.button:active {
border: 3px inset rgb(132, 0, 255);
color: rgb(132, 0, 255);
background-color: black;
}
</style>
</head>
<body>
<img src="./images/18checkfinch.png" style="max-width:709px; width:100%; margin:auto; margin-top: 10px; margin-bottom: 10px; display:block; padding-left: 9px;">
<div id="textbox">This site contains <b>adult content</b> not suitable for <b>people under 18 years of age!</b> <br> If you're under 18, you probably shouldn't be here!<br>Are you an adult?<br>
<button class=button onclick = "localStorage.setItem('adult', '1'); window.location = 'index.html';">Yes, I am over 18!</button>
</div>
</body>