/
Elezzar
/
Stellar_Burger
Обзор
Документация
Войти
/
Elezzar
/
Stellar_Burger
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
develop
src/components/LoadingSpinner/LoadingSpinner.module.css
34 строки
555 B
Elezzar
add Loading spinner
09 янв 2024, 18:09
09 янв 2024, 18:09
863f775
Код
Авторство
О чём код?
@keyframes spin { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } } .box { display: flex; flex-direction: column; justify-content: center; align-items: center; height: 100%; width: 100%; height: 100vh; position: fixed; top: 0; right: 0; bottom: 0; left: 0; background-color: rgba(0, 0, 0, 0.6); transition: all 1s ease 0s; } .spinner { width: 40px; height: 40px; border-radius: 50%; border: 4px solid #3A3A55; border-top-color: #fdfdfd; animation: spin 1s infinite linear; }