/
Coderdev
/
web-static-labs
Обзор
Документация
Войти
/
Coderdev
/
web-static-labs
Код
Запросы
0
Задачи
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
html/lab5/task1/style.css
93 строки
1 KB
Coderdev
1
26 мар 2026, 23:33
26 мар 2026, 23:33
6331fa1
Код
Авторство
О чём код?
body { margin: 0; font-family: Arial, sans-serif; background: #f4f6fb; color: #222; } .page { max-width: 900px; margin: 50px auto; padding: 0 20px; } .result-text { margin-top: 24px; font-size: 18px; font-weight: bold; } .overlay { position: fixed; inset: 0; background: rgba(0, 0, 0, 0.45); display: flex; align-items: center; justify-content: center; } .hidden { display: none; } .modal { width: max(300px, 50vw); min-height: max(200px, 30vh); background: white; border-radius: 12px; box-shadow: 0 10px 28px rgba(0, 0, 0, 0.2); padding: 24px; box-sizing: border-box; } .label { display: block; margin-top: 18px; margin-bottom: 8px; font-weight: bold; } .input { width: 100%; padding: 10px 12px; font-size: 16px; box-sizing: border-box; border: 2px solid #cbd5e1; border-radius: 8px; outline: none; } .input.error { border-color: red; } .error-text { min-height: 20px; margin: 8px 0 0; color: red; font-size: 14px; } .buttons { margin-top: 24px; display: flex; gap: 12px; } button { padding: 10px 16px; border: none; border-radius: 8px; cursor: pointer; font-size: 15px; } #subscribeBtn { background: #2563eb; color: white; } #closeBtn { background: #e5e7eb; color: #111; }