/
spirzen
/
it-code-examples
Обзор
Документация
Войти
/
spirzen
/
it-code-examples
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
examples/html/css-113-025/part-02.css
63 строки
983 B
Spirzen
Code migration pack
09 июн 2026, 01:41
09 июн 2026, 01:41
cebc284
Код
Авторство
О чём код?
.modal { position: fixed; top: 0; left: 0; width: 100vw; height: 100vh; z-index: 2000; display: none; } .modal.active { display: flex; justify-content: center; align-items: center; } .modal-overlay { position: absolute; width: 100%; height: 100%; background-color: rgba(0, 0, 0, 0.5); } .modal-content { position: relative; background-color: #FFFFFF; border-radius: 12px; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2); max-width: 500px; width: 90%; z-index: 2001; } .modal-header { display: flex; justify-content: space-between; align-items: center; padding: 1.25rem 1.25rem 0.75rem; } .modal-header h3 { margin: 0; font-size: 1.25rem; } .modal-close { background: none; border: none; font-size: 1.5rem; cursor: pointer; color: var(--color-secondary); } .modal-body { padding: 0.75rem 1.25rem; } .modal-footer { display: flex; justify-content: flex-end; gap: 0.75rem; padding: 0.75rem 1.25rem 1.25rem; }