/
Coderdev
/
web-static-labs
Обзор
Документация
Войти
/
Coderdev
/
web-static-labs
Код
Запросы
0
Задачи
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
html/lab5/task1/styles.css
83 строки
2 KB
Coderdev
1
12 май 2026, 12:37
12 май 2026, 12:37
d8ecd0f
Код
Авторство
О чём код?
body { font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; line-height: 1.6; padding: 40px; background-color: #f4f7f6; } #status-message { margin-top: 20px; font-weight: bold; padding: 10px; border-radius: 5px; display: inline-block; } /* Стили модального окна */ .modal-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.6); display: none; /* Скрыто по умолчанию */ justify-content: center; align-items: center; z-index: 1000; } .modal-content { background: white; padding: 30px; border-radius: 8px; box-shadow: 0 5px 15px rgba(0,0,0,0.3); width: clamp(300px, 50%, 50vw); /* 50% ширины, но не менее 300px */ height: clamp(200px, 30%, 30vh); /* 30% высоты, но не менее 200px */ position: relative; display: flex; flex-direction: column; justify-content: center; text-align: center; box-sizing: border-box; } input[type="email"] { width: 80%; padding: 10px; margin: 10px auto; border: 1px solid #ccc; border-radius: 4px; outline: none; } input.error { border-color: #ff4d4d; } #error-text { color: #ff4d4d; font-size: 0.85em; margin-top: -5px; margin-bottom: 10px; display: none; } .btn-group { display: flex; gap: 10px; justify-content: center; } button { padding: 10px 20px; cursor: pointer; border: none; border-radius: 4px; transition: 0.3s; } .btn-sub { background-color: #28a745; color: white; } .btn-sub:hover { background-color: #218838; } .btn-close { background-color: #6c757d; color: white; } .btn-close:hover { background-color: #5a6268; }