/
hoglish
/
Quest
Обзор
Документация
Войти
/
hoglish
/
Quest
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
master
src/assets/css/style.css
64 строки
1 KB
Vlad
1
29 июн 2026, 19:47
29 июн 2026, 19:47
b446e53
Код
Авторство
О чём код?
body { background-color: #050505; color: #00ff41; font-family: 'Courier New', monospace; display: flex; justify-content: center; align-items: center; height: 100vh; margin: 0; } #game-viewport { width: 900px; height: 600px; border: 1px solid #00ff41; padding: 40px; box-sizing: border-box; display: flex; flex-direction: column; box-shadow: 0 0 30px rgba(0, 255, 65, 0.1); } .top-bar { display: flex; justify-content: space-between; font-size: 14px; border-bottom: 1px solid #004411; padding-bottom: 10px; margin-bottom: 30px; } #response-terminal { flex-grow: 1; overflow-y: auto; } #text-container { font-size: 20px; line-height: 1.5; white-space: pre-wrap; } #input-methods { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 40px; } button { background: none; border: 1px solid #00ff41; color: #00ff41; padding: 15px; cursor: pointer; font-family: inherit; font-size: 16px; transition: 0.2s; } button:hover { background: #00ff41; color: #050505; }