something

This commit is contained in:
Iru Sensei 2023-04-26 17:34:15 +02:00
parent 733789ef91
commit 0995b2d6de
No known key found for this signature in database
GPG key ID: 868D5BFBF4FAEB93
3 changed files with 59 additions and 0 deletions

5
assets/css/all.min.css vendored Normal file

File diff suppressed because one or more lines are too long

54
index.html Normal file
View file

@ -0,0 +1,54 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Under Construction</title>
<style>
body {
background-color: #000;
color: #fff;
font-family: Arial, sans-serif;
text-align: center;
}
h1 {
font-size: 4rem;
margin-top: 2rem;
}
p {
font-size: 2rem;
margin-top: 2rem;
}
img {
margin-top: 3rem;
max-width: 100%;
height: auto;
}
blink {
animation: blinker 1s linear infinite;
}
@keyframes blinker {
50% {
opacity: 0;
}
}
</style>
<link rel="icon" type="image/png" href="/assets/img/under-construction-icon-512.png">
<link rel="shortcut icon" href="/assets/img/under-construction-icon-512.png" type="image/x-icon">
<link rel="stylesheet" type="text/css" href="/assets/css/all.min.css">
</head>
<body>
<h1>This page is under construction</h1>
<p>We're working on something awesome and can't wait to share it with you!</p>
<img src="https://www.placecage.com/640/360" alt="Construction image">
<p><blink>COMING SOON...</blink></p>
<div>
<i class="fas fa-desktop"></i> Best viewed on 800x600<br>
<i class="fab fa-netscape"></i> Optimized for Netscape Navigator
</div>
</body>
</html>