/
Valexr
/
tetrix
Обзор
Документация
Войти
/
Valexr
/
tetrix
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
main
src/css/base.css
64 строки
991 B
Valexr
fix: pointer width
12 июл 2026, 21:32
12 июл 2026, 21:32
9e04330
Код
Авторство
О чём код?
body, html { height: 100%; } body { margin: 0; display: grid; overflow: hidden; grid-template-rows: auto 1fr auto; grid-template-columns: 1fr; font-family: "Silkscreen", system-ui; font-size: 14px; letter-spacing: -2px; text-align: center; color: var(--front); background-color: var(--back); user-select: none; -webkit-user-select: none; } * { box-sizing: border-box; font-weight: 400; } header, footer { display: flex; align-items: center; justify-content: space-around; padding: 1rem; } :is(header, footer) > * { margin: 0; } button { margin: 0; border: 0; text-align: inherit; color: inherit; cursor: pointer; font-size: inherit; font-family: inherit; font-weight: inherit; background-color: var(--surface); padding: 0.45rem 1rem; border-radius: 0.25rem; } button:hover { background-color: var(--hover); } button:hover:active { background-color: var(--active); } a { color: inherit; text-decoration: none; }