42 lines
756 B
Plaintext
42 lines
756 B
Plaintext
|
|
.loading-animation.data-v-d759de86 {
|
|
display: flex;
|
|
gap: 5px;
|
|
justify-content: space-around;
|
|
width: 100px;
|
|
}
|
|
.ball.data-v-d759de86 {
|
|
width: 15px;
|
|
height: 15px;
|
|
border-radius: 50%;
|
|
animation: bounce-d759de86 1.2s infinite ease-in-out;
|
|
}
|
|
.ball.data-v-d759de86:nth-child(1) {
|
|
animation-delay: -0.32s;
|
|
}
|
|
.ball.data-v-d759de86:nth-child(2) {
|
|
animation-delay: -0.16s;
|
|
}
|
|
.ball.data-v-d759de86:nth-child(3) {
|
|
animation-delay: -0.13s;
|
|
}
|
|
.ball.data-v-d759de86:nth-child(4) {
|
|
animation-delay: -0.07s;
|
|
}
|
|
.ball.data-v-d759de86:nth-child(5) {
|
|
animation-delay: -0.04s;
|
|
}
|
|
.ball.data-v-d759de86:nth-child(6) {
|
|
animation-delay: 0s;
|
|
}
|
|
@keyframes bounce-d759de86 {
|
|
0%,
|
|
80%,
|
|
100% {
|
|
transform: scale(0);
|
|
}
|
|
40% {
|
|
transform: scale(1);
|
|
}
|
|
}
|