/
kochkatech
/
CorpGame
Обзор
Документация
Войти
/
kochkatech
/
CorpGame
Код
Запросы
1
Задачи
Вики
Пакеты
0
Релизы
1
CI/CD
Аналитика
master
frontend/src/index.css
60 строк
1 KB
kochkareal
chore: добавлен .gitattributes, нормализованы переносы строк (LF везде, кроме .bat/.cmd)
06 авг 2026, 15:18
06 авг 2026, 15:18
c25ef1b
Код
Авторство
О чём код?
@tailwind base; @tailwind components; @tailwind utilities; :root { --main-color: #4060e9; --focus-color: greenyellow; --text-color: white; } ::selection { background: var(--focus-color); color: #0b0f1a; } html { -webkit-text-size-adjust: 100%; } body { margin: 0; padding: 0; font-family: 'JetBrains Mono', Consolas, ui-monospace, monospace; background-color: #0b0f1a; color: #e7ebff; -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; } a { text-decoration: none; color: var(--focus-color); } ::-webkit-scrollbar { width: 10px; } ::-webkit-scrollbar-thumb { background: var(--main-color); border-radius: 5px; } ::-webkit-scrollbar-track { background: transparent; } /* Учёт «чёлки»/скруглений на телефонах для нижних панелей */ .safe-bottom { padding-bottom: calc(1rem + env(safe-area-inset-bottom, 0px)); } /* Уважаем системную настройку «уменьшить движение» */ @media (prefers-reduced-motion: reduce) { *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; } }