/
Coderdev
/
web-static-labs
Обзор
Документация
Войти
/
Coderdev
/
web-static-labs
Код
Запросы
0
Задачи
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
html/lab2/task8/style.css
67 строк
983 B
Coderdev
finish
03 мар 2026, 11:54
03 мар 2026, 11:54
5e81a6d
Код
Авторство
О чём код?
*{ margin:0; padding:0; box-sizing:border-box; } .fullscreen{ width:100vw; height:100vh; display:flex; justify-content:center; align-items:center; font-size:4rem; font-weight:bold; color:white; text-align:center; } /* < 300px */ @media (max-width:299px){ .fullscreen{ background:#1abc9c; } .text::after{ content:" (#1abc9c)"; } } /* 300 – 800 */ @media (min-width:300px) and (max-width:799px){ .fullscreen{ background:#2ecc71; } .text::after{ content:" (#2ecc71)"; } } /* 800 – 1300 */ @media (min-width:800px) and (max-width:1299px){ .fullscreen{ background:#3498db; } .text::after{ content:" (#3498db)"; } } /* 1300 – 1800 */ @media (min-width:1300px) and (max-width:1799px){ .fullscreen{ background:#9b59b6; } .text::after{ content:" (#9b59b6)"; } } /* > 1800 */ @media (min-width:1800px){ .fullscreen{ background:#34495e; } .text::after{ content:" (#34495e)"; } }