File size: 1,002 Bytes
1813a37 a417977 1813a37 a417977 1813a37 a417977 1813a37 a417977 1813a37 a417977 1813a37 a417977 1813a37 a417977 1813a37 a417977 1813a37 a417977 1813a37 1982de5 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 |
.spinnerSquare {
--height: 40px;
--width: 50px;
--small-height: calc(var(--height) / 1.5);
display: flex;
flex-direction: row;
width: var(--width);
height: var(--height);
> div {
width: calc(var(--width) / 5);
height: var(--small-height);
margin: auto auto;
border-radius: 2px;
}
}
.square1 {
animation: square-anim 1200ms cubic-bezier(0.445, 0.05, 0.55, 0.95) 0s infinite;
}
.square2 {
animation: square-anim 1200ms cubic-bezier(0.445, 0.05, 0.55, 0.95) 200ms infinite;
}
.square3 {
animation: square-anim 1200ms cubic-bezier(0.445, 0.05, 0.55, 0.95) 400ms infinite;
}
@keyframes square-anim {
0% {
height: var(--small-height);
background-color: var(--text-secondary);
}
20% {
height: var(--small-height);
}
40% {
height: var(--height);
background-color: var(--text-hover-secondary);
}
80% {
height: var(--small-height);
}
100% {
height: var(--small-height);
background-color: var(--text-secondary);
}
} |