/
DevDenzo
/
ERP
Обзор
Документация
Войти
/
DevDenzo
/
ERP
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
master
src/components/Loaders/MainBootLoader/_main-bootloader.less
69 строк
1 KB
Denis Sklyarskij
Инициализирован репозиторий
14 янв 2026, 23:32
14 янв 2026, 23:32
1df3d47
Код
Авторство
О чём код?
.bootloader-wrapper { display: flex; flex-direction: column; align-items: center; justify-content: center; height: 100vh; font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif; } .bootloader-ring { position: relative; width: 60px; height: 60px; margin-bottom: 16px; } .bootloader-segment { position: absolute; width: 24px; height: 24px; border-radius: 50%; background: linear-gradient(45deg, #1e85e9, #0d6efd); animation: rotate 1.8s cubic-bezier(0.4, 0, 0.6, 1) infinite; } .bootloader-segment:nth-child(1) { top: 0; left: 18px; animation-delay: -0.45s; } .bootloader-segment:nth-child(2) { top: 18px; right: 0; animation-delay: -0.9s; } .bootloader-segment:nth-child(3) { bottom: 0; left: 18px; animation-delay: -1.35s; } .bootloader-segment:nth-child(4) { bottom: 18px; left: 0; } .bootloader-text { color: #6c757d; font-size: 14px; letter-spacing: 0.5px; opacity: 0.8; } @keyframes rotate { 0% { transform: rotate(0deg) scale(0.7); opacity: 0.6; } 50% { transform: rotate(180deg) scale(1); opacity: 1; } 100% { transform: rotate(360deg) scale(0.7); opacity: 0.6; } }