Элементы по отдельности

This commit is contained in:
2025-11-25 11:52:22 +03:00
parent 77c7e2834a
commit b2f30dfc00
13 changed files with 491 additions and 1 deletions

View File

@@ -0,0 +1,60 @@
<!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>