website/larra.html
2024-11-10 15:03:11 +00:00

60 lines
No EOL
1.5 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Donate - SHA512SUM</title>
<style>
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;
}
.overlay {
z-index: 2;
background-color: rgba(0, 3, 5, 0.9);
padding: 20px;
width: 400px;
}
.main {
position: absolute;
bottom: 40px;
display: flex;
justify-content: center;
width: 100%;
z-index: 2;
}
.main a {
background-color: rgba(0, 3, 5, 0.95);
padding: 4px;
color: #00ff00;
margin: 0 15px;
}
iframe {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
border: none;
z-index: 1;
}
</style>
</head>
<body>
<div class="overlay">
<h1>[Larra]</h1>
Client, server and library for XMPP in C++, under development, to participate in development, contact me.
</div>
<div class="main"><a href="/" target="_self">Main page</a></div>
<iframe src="matrix.html"></iframe>
</body>