49 lines
No EOL
830 B
HTML
49 lines
No EOL
830 B
HTML
<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 {
|
|
border-radius: 5px;
|
|
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> |