/
vlad82098
/
PRACTIC2
Обзор
Документация
Войти
/
vlad82098
/
PRACTIC2
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/components/PBtn.css
116 строк
2 KB
влад
first commit
19 дек 2025, 06:16
19 дек 2025, 06:16
6bb42b0
Код
Авторство
О чём код?
.profile-menu-btn { position: fixed; top: 20px; right: 20px; width: 50px; height: 50px; background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary)); border: none; border-radius: 10px; cursor: pointer; display: flex; justify-content: center; align-items: center; z-index: 1001; transition: all 0.3s ease; box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2); text-decoration: none; overflow: hidden; } .profile-menu-btn:hover { transform: scale(1.05); box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3); } .profile-menu-btn:active { transform: scale(0.98); } .profile-icon-container { display: flex; justify-content: center; align-items: center; width: 100%; height: 100%; position: relative; transition: transform 0.3s ease; } .profile-menu-btn:hover .profile-icon-container { transform: scale(1.1); } .profile-icon { width: 28px; height: 28px; transition: all 0.3s ease; } .profile-menu-btn:hover .profile-icon { transform: translateY(-2px); } .profile-menu-btn.active { background: linear-gradient(135deg, #ff6b6b, #f5576c); box-shadow: 0 5px 15px rgba(255, 107, 107, 0.3); } .profile-menu-btn.active:hover { box-shadow: 0 8px 25px rgba(255, 107, 107, 0.4); } .profile-notification-badge { position: absolute; top: -5px; right: -5px; background: #ff4757; color: white; font-size: 12px; font-weight: bold; width: 20px; height: 20px; border-radius: 50%; display: flex; align-items: center; justify-content: center; border: 2px solid white; animation: pulse 2s infinite; } @keyframes pulse { 0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 71, 87, 0.7); } 70% { transform: scale(1.1); box-shadow: 0 0 0 10px rgba(255, 71, 87, 0); } 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 71, 87, 0); } } @media (max-width: 768px) { .profile-menu-btn { width: 45px; height: 45px; top: 15px; right: 15px; } .profile-icon { width: 24px; height: 24px; } .profile-notification-badge { width: 18px; height: 18px; font-size: 10px; top: -4px; right: -4px; } }