61 lines
1.4 KiB
HTML
61 lines
1.4 KiB
HTML
<!DOCTYPE html>
|
||
<html lang="ru">
|
||
|
||
<head>
|
||
<meta charset="UTF-8">
|
||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||
<title>Кнопка SOS</title>
|
||
<link rel="stylesheet" href="../common.css">
|
||
<style>
|
||
body {
|
||
display: flex;
|
||
justify-content: center;
|
||
align-items: center;
|
||
min-height: 100vh;
|
||
background: var(--color-bg-light);
|
||
padding: 40px;
|
||
}
|
||
|
||
.element-container {
|
||
display: flex;
|
||
flex-direction: column;
|
||
align-items: center;
|
||
gap: 20px;
|
||
}
|
||
|
||
.element-title {
|
||
font-size: 20px;
|
||
font-weight: 600;
|
||
color: var(--color-text-dark);
|
||
text-align: center;
|
||
}
|
||
|
||
.element-description {
|
||
font-size: 14px;
|
||
color: var(--color-text-medium);
|
||
text-align: center;
|
||
max-width: 300px;
|
||
}
|
||
</style>
|
||
</head>
|
||
|
||
<body>
|
||
<div class="element-container">
|
||
<h2 class="element-title">Кнопка SOS</h2>
|
||
|
||
<button class="sos-button">
|
||
<span class="sos-icon">🆘</span>
|
||
</button>
|
||
|
||
<p class="element-description">
|
||
Размер: 80×80pt<br>
|
||
Цвет: #C0392B (красный)<br>
|
||
Обводка: 4pt белая<br>
|
||
Анимация: пульсация
|
||
</p>
|
||
</div>
|
||
</body>
|
||
|
||
</html>
|
||
|