/
Extrap
/
Games_site
Обзор
Документация
Войти
/
Extrap
/
Games_site
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
master
css/snake.css
105 строк
2 KB
Extrap
result
27 янв 2026, 13:42
27 янв 2026, 13:42
1f4c493
Код
Авторство
О чём код?
* { margin: 0; padding: 0; box-sizing: border-box; font-family: "Montserrat", sans-serif; font-optical-sizing: auto; font-style: normal; font-size: 15px; color: #C6CDE5; } html, body { height: 100%; margin: 0; } body { background: #1B003D; display: flex; align-items: center; justify-content: center; } canvas { background: #13002a; border: 1px solid white; } /* навигационная панель */ header { padding: 12px; position: fixed; top: 0; width: 100%; z-index: 1000; } button { display: flex; align-items: center; background: none; border: none; padding: 8px 12px; text-align: center; display: inline-block; border-radius: 5px; cursor: pointer; transition: background-color 0.5s; background-color: #6200EE; } a { display: flex; align-items: center; text-decoration: none; gap: 5px; } button:hover { background-color: #3700B3; color: #fff; box-shadow: 0px 0px 10px 2px #390080; } #score-display { font-size: 24px; text-align: center; margin-bottom: 10px; } /* модальные окна */ .popup { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background-color: rgba(0, 0, 0, 0.7); justify-content: center; align-items: center; } .popup-content { display: flex; flex-direction: column; gap: 20px; background: #2a0358; color: #fff; padding: 30px 40px; border-radius: 5px; text-align: center; } .popup-content h2 { font-size: 24px; } .popup-content p { font-size: 21px; }