website/index.html
2024-11-14 15:05:22 +00:00

195 lines
4.7 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>SHA512SUM</title>
<style>
.overlay {
z-index: 2;
background-color: rgba(0, 3, 5, 0.8);
padding: 20px;
}
body {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
font-family: 'Courier New', Courier, monospace;
font-size: 18px;
background-color: #000;
color: #00ff00;
padding: 20px;
overflow: hidden;
}
h1 {
font-size: 48px;
margin-bottom: 20px;
text-shadow: 0 0 10px rgba(0, 255, 0, 0.7);
}
ul {
list-style-type: none;
padding: 0;
margin-top: 10px;
}
li {
font-size: 24px;
color: #00ff00;
margin: 10px 0;
position: relative;
padding-left: 25px;
}
li::before {
content: "➤";
position: absolute;
left: 0;
color: #00ff00;
}
a {
text-decoration: none;
color: #00ff00;
transition: color 0.3s ease;
}
#blink {
animation: blink 1s step-start infinite;
}
@keyframes blink {
50% {
opacity: 0;
}
}
a:hover {
color: #ffdd57;
text-decoration: underline;
}
.navigation {
position: absolute;
bottom: 10px;
width: 100%;
display: flex;
justify-content: space-between;
z-index: 2;
}
.nav-button {
background-color: black;
color: #00ff00;
border: none;
padding: 5px 15px;
font-size: 16px;
position: relative;
z-index: 2;
background-color: rgba(0, 3, 5, 0.8);
padding: 4px;
}
.nav-button:hover {
background-color: #333;
}
.horizontal-links {
position: absolute;
bottom: 40px;
display: flex;
justify-content: center;
width: 100%;
z-index: 2;
}
.horizontal-links a {
background-color: rgba(0, 3, 5, 0.9);
padding: 4px;
color: gray;
margin: 0 15px;
}
.horizontal-links a:hover {
color: #00ff00;
}
iframe {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
border: none;
z-index: 1;
}
.checkbox {
display: none;
}
nav {
display: none;
z-index: 3;
}
label {
font-size: 13px;
position: absolute;
top: 2%;
left: 2%;
background-color: rgba(0, 3, 5, 0.9);
padding: 4px;
user-select: none;
}
#projects:checked + label + nav {
display: block;
}
#projects:checked ~ .main-list {
display: none;
}
.donate {
text-align: center;
}
</style>
</head>
<body>
<div class="overlay">
<h1>sha512sum<span id="blink">_</span></h1>
<input type="checkbox" id="projects" class="checkbox">
<label for="projects"><h2>Projects</h2></label>
<nav>
<ul>
<li><a href="larra.html" target="_self">Larra</a></li>
</ul>
</nav>
<ul class="main-list">
<li><a href="/git/sha512sum" target="_blank">Git</a></li>
<li><a href="xmpp:sha512sum@ivt5wiimhwpo56td6eodn2n3fduug3bglqvqewbk2jnyl4hcimea.b32.i2p" target="_blank">XMPP</a></li>
<li><a href="https://habr.com/ru/users/sha512sum/" target="_blank">Habr</a></li>
<li><a href="https://t.me/cppnyasha" target="_blank">Telegram</a></li>
</ul>
<div class="donate"><a href="donate.html" target="_self">[donate]</a></div>
</div>
<div class="navigation">
<a href="https://webring.otomir23.me/18/prev"><button class="nav-button">prev</button></a>
<a href="https://webring.otomir23.me/18/next"><button class="nav-button">next</button></a>
</div>
<div class="horizontal-links">
<a href="http://ivt5wiimhwpo56td6eodn2n3fduug3bglqvqewbk2jnyl4hcimea.b32.i2p/">[I2P]</a>
<a href="http://tdtpwiki3owknr5ky7lwvqjwzb6jben5z424ynmhvs2smxgwiyj6zpyd.onion/">[Tor]</a>
<a href="http://[200:1af8:8eaf:e2f2:7bba:1d1:d12f:2f4]/">[Ygg]</a>
<a href="https://sha512sum.xyz/">[Clear]</a>
</div>
<iframe src="matrix.html"></iframe>
</body>
</html>