/
spirzen
/
it-code-examples
Обзор
Документация
Войти
/
spirzen
/
it-code-examples
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
examples/javascript/lab-1146-005/part-03.css
18 строк
658 B
Spirzen
Code migration pack
09 июн 2026, 01:41
09 июн 2026, 01:41
cebc284
Код
Авторство
О чём код?
.button-row { display: flex; flex-wrap: wrap; gap: 0.75rem; } .button { display: inline-flex; align-items: center; justify-content: center; padding: 0.75rem 1.5rem; font: inherit; font-weight: 600; border-radius: 8px; border: 1px solid transparent; cursor: pointer; transition: transform 0.15s ease, box-shadow 0.15s ease; } .button--primary { background: #7b68ee; color: #fff; } .button--outline { background: transparent; color: #7b68ee; border-color: #7b68ee; } .button--danger { background: #dc3545; color: #fff; } .button:disabled { opacity: 0.65; cursor: not-allowed; } .button:not(:disabled):active { transform: translateY(1px); }