24 lines
277 B
CSS
24 lines
277 B
CSS
@keyframes loader-fade {
|
|
0% {
|
|
opacity: 0;
|
|
}
|
|
|
|
75% {
|
|
opacity: 1;
|
|
}
|
|
}
|
|
|
|
.dot {
|
|
opacity: 0;
|
|
animation: loader-fade 1s;
|
|
animation-iteration-count: infinite;
|
|
|
|
&:nth-child(2) {
|
|
animation-delay: 0.2s;
|
|
}
|
|
|
|
&:nth-child(3) {
|
|
animation-delay: 0.4s;
|
|
}
|
|
}
|