add: coming soon

This commit is contained in:
Tibor stuchlík 2023-11-26 00:50:27 +01:00
parent 4b11e2a947
commit 34befa95b7

View file

@ -1 +1,48 @@
server slevnakov.cz
<html>
<head>
</head>
<body style="background-color: lightsteelblue; margin: 0">
<style>
.main {
height: 100vh;
position: relative;
}
.label {
margin: 0;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
color: green;
}
.title {
font-size: 300%;
font-family: Segoe UI;
font-weight: bold;
text-align: center;
}
.text {
font-size: 140%;
font-family: Segoe UI;
text-align: center;
background-color: green;
color: lightsteelblue;
}
</style>
<div class="main">
<div class="label">
<div class="title">SLEVNAKOV</div>
<div class="text">COMING SOON</div>
</div>
</div>
</body>
</html>