2022-04-22 11:51:42 +00:00
|
|
|
#app-loading,
|
|
|
|
#app-loading:before,
|
|
|
|
#app-loading:after {
|
|
|
|
border-radius: 50%;
|
|
|
|
width: 2.5em;
|
|
|
|
height: 2.5em;
|
|
|
|
animation-fill-mode: both;
|
|
|
|
animation: loadingAnimation 1.8s infinite ease-in-out;
|
|
|
|
}
|
|
|
|
|
|
|
|
#app-loading {
|
|
|
|
position: relative;
|
2023-05-17 13:07:34 +00:00
|
|
|
top: 45vh;
|
|
|
|
margin: 0 auto;
|
|
|
|
font-size: 10px;
|
|
|
|
color: #409eff;
|
2022-04-22 11:51:42 +00:00
|
|
|
text-indent: -9999em;
|
|
|
|
animation-delay: -0.16s;
|
2023-05-17 13:07:34 +00:00
|
|
|
transform: translateZ(0);
|
2022-04-22 11:51:42 +00:00
|
|
|
transform: translate(-50%, 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
#app-loading:before,
|
|
|
|
#app-loading:after {
|
|
|
|
content: "";
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
#app-loading:before {
|
|
|
|
left: -3.5em;
|
|
|
|
animation-delay: -0.32s;
|
|
|
|
}
|
|
|
|
|
|
|
|
#app-loading:after {
|
|
|
|
left: 3.5em;
|
|
|
|
}
|
|
|
|
|
|
|
|
@keyframes loadingAnimation {
|
|
|
|
0%,
|
|
|
|
80%,
|
|
|
|
100% {
|
|
|
|
box-shadow: 0 2.5em 0 -1.3em;
|
|
|
|
}
|
|
|
|
40% {
|
|
|
|
box-shadow: 0 2.5em 0 0;
|
|
|
|
}
|
|
|
|
}
|