#212121
1.loader { 2 height: 20px; 3 width: 20px; 4 border-radius: 50%; 5 background-color: #69ffa8; 6 animation: 1.5s pulse infinite ease-in-out; 7} 8 9@keyframes pulse { 10 0% { 11 box-shadow: 0 0 0 0 #69ffa8; 12 } 13 14 100% { 15 box-shadow: 0 0 0 14px #69ffa800; 16 } 17}
Comments
MIT License