/
Percival
/
reactJS_course
Обзор
Документация
Войти
/
Percival
/
reactJS_course
Код
Запросы
4
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
task5
task_1_fsd/src/shared/ui/Button/Button.module.css
42 строки
650 B
Rituparn
Added the fourth task
19 окт 2025, 23:09
19 окт 2025, 23:09
f890dd5
Код
Авторство
О чём код?
.button { padding: 0.75rem 1.5rem; border: none; border-radius: 0.5rem; font-size: 1rem; font-weight: 500; cursor: pointer; transition: all 0.2s; outline: none; } .button:disabled { opacity: 0.5; cursor: not-allowed; } .primary { background-color: #6366f1; color: white; } .primary:hover:not(:disabled) { background-color: #4f46e5; } .secondary { background-color: #e5e7eb; color: #374151; } .secondary:hover:not(:disabled) { background-color: #d1d5db; } .danger { background-color: #ef4444; color: white; } .danger:hover:not(:disabled) { background-color: #dc2626; }