64 lines
1.5 KiB
HTML
64 lines
1.5 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="ru">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Статус сервера</title>
|
|
<style>
|
|
body {
|
|
margin: 0;
|
|
padding: 0;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
min-height: 100vh;
|
|
font-family: Arial, sans-serif;
|
|
background-color: #f5f5f5;
|
|
}
|
|
|
|
.status-container {
|
|
text-align: center;
|
|
background: white;
|
|
padding: 40px;
|
|
border-radius: 12px;
|
|
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
|
|
max-width: 400px;
|
|
}
|
|
|
|
.checkmark {
|
|
display: inline-block;
|
|
width: 60px;
|
|
height: 60px;
|
|
margin-bottom: 20px;
|
|
position: relative;
|
|
}
|
|
|
|
.checkmark::after {
|
|
content: '';
|
|
position: absolute;
|
|
left: 20px;
|
|
top: 10px;
|
|
width: 25px;
|
|
height: 40px;
|
|
border: solid #4CAF50;
|
|
border-width: 0 10px 10px 0;
|
|
transform: rotate(45deg);
|
|
border-radius: 5px;
|
|
}
|
|
|
|
h1 {
|
|
color: #333;
|
|
font-size: 24px;
|
|
margin: 0;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="status-container">
|
|
<div class="checkmark"></div>
|
|
<h1>Сервер рестрима работает</h1>
|
|
</div>
|
|
</body>
|
|
</html>
|
|
|