/
F1lya
/
Modal_Window
Обзор
Документация
Войти
/
F1lya
/
Modal_Window
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
master
Button.css
111 строк
2 KB
F1lya
upload files
20 окт 2025, 14:17
20 окт 2025, 14:17
f9aac0b
Код
Авторство
О чём код?
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; border: none; border-radius: 8px; font-family: inherit; font-weight: 600; cursor: pointer; transition: all 0.2s ease-in-out; text-decoration: none; position: relative; line-height: 1; } .btn:focus-visible { outline: 2px solid #3b82f6; outline-offset: 2px; } .btn:disabled { opacity: 0.6; cursor: not-allowed; transform: none !important; } /* Sizes */ .btn--small { padding: 8px 16px; font-size: 14px; min-height: 36px; } .btn--medium { padding: 12px 24px; font-size: 16px; min-height: 44px; } .btn--large { padding: 16px 32px; font-size: 18px; min-height: 52px; } /* Variants */ .btn--primary { background: #3b82f6; color: white; } .btn--primary:hover:not(:disabled) { background: #2563eb; transform: translateY(-1px); } .btn--primary:active:not(:disabled) { background: #1d4ed8; transform: translateY(0); } .btn--success { background: #10b981; color: white; } .btn--success:hover:not(:disabled) { background: #059669; transform: translateY(-1px); } .btn--secondary { background: #6b7280; color: white; } .btn--secondary:hover:not(:disabled) { background: #4b5563; transform: translateY(-1px); } .btn--danger { background: #ef4444; color: white; } .btn--danger:hover:not(:disabled) { background: #dc2626; transform: translateY(-1px); } /* Loading state */ .btn--loading .btn__content { opacity: 0.7; } .btn__spinner { width: 16px; height: 16px; border: 2px solid transparent; border-top: 2px solid currentColor; border-radius: 50%; animation: spin 1s linear infinite; } @keyframes spin { to { transform: rotate(360deg); } }