#212121
1.load { 2 display: flex; 3 border-radius: 50%; 4 flex-direction: row; 5} 6 7.progress { 8 width: 2em; 9 height: 2em; 10 margin: 0.4em; 11 scale: 0; 12 border-radius: 50%; 13 background: rgb(255, 255, 255); 14 animation: loading_492 2s ease infinite; 15 animation-delay: 1s; 16} 17 18@keyframes loading_492 { 19 50% { 20 scale: 1; 21 } 22} 23 24.progress:nth-child(2) { 25 animation-delay: 1.3s; 26} 27 28.progress:nth-child(3) { 29 animation-delay: 1.7s; 30}
989 views
989 views
Comments
MIT License