32 lines
554 B
CSS
32 lines
554 B
CSS
.loading-container {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
justify-content: center;
|
|
height: 100vh;
|
|
width: 100%;
|
|
}
|
|
|
|
.loading-spinner {
|
|
margin-bottom: 1rem;
|
|
}
|
|
|
|
.spinner {
|
|
width: 40px;
|
|
height: 40px;
|
|
border: 4px solid rgba(0, 0, 0, 0.1);
|
|
border-radius: 50%;
|
|
border-top-color: #3498db;
|
|
animation: spin 1s ease-in-out infinite;
|
|
}
|
|
|
|
.loading-message {
|
|
font-size: 1.2rem;
|
|
color: #333;
|
|
}
|
|
|
|
@keyframes spin {
|
|
to {
|
|
transform: rotate(360deg);
|
|
}
|
|
} |