49 lines
817 B
SCSS
49 lines
817 B
SCSS
.loading-dialog {
|
|
position: fixed;
|
|
top: 0;
|
|
bottom: 0;
|
|
left: 0;
|
|
right: 0;
|
|
width: 100vw;
|
|
height: 100vh;
|
|
backdrop-filter: blur(5px);
|
|
background-color: rgba($color: #000, $alpha: 0.2);
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
z-index: 999;
|
|
}
|
|
|
|
.loader {
|
|
position: fixed;
|
|
border: 16px solid #fff;
|
|
border-top: 16px solid #444df2;
|
|
border-radius: 50%;
|
|
width: 50px;
|
|
height: 50px;
|
|
animation: spin 2s linear infinite;
|
|
margin: auto;
|
|
margin-top: 20px;
|
|
}
|
|
|
|
.loading-text {
|
|
position: fixed;
|
|
text-align: center;
|
|
margin-top: 200px;
|
|
color: #fff;
|
|
text-shadow: 3px 3px 3px #000;
|
|
p {
|
|
font-size: 21px;
|
|
font-weight: 400px;
|
|
margin-bottom: 6px;
|
|
}
|
|
}
|
|
|
|
@keyframes spin {
|
|
0% {
|
|
transform: rotate(0deg);
|
|
}
|
|
100% {
|
|
transform: rotate(360deg);
|
|
}
|
|
}
|