#212121
1.container { 2 background-color: #212121; 3 width: 100%; 4 height: 100%; 5 display: flex; 6 align-items: center; 7 justify-content: center; 8} 9 10.loader { 11 height: 100px; 12 width: 100px; 13 border-radius: 50%; 14 background-color: #e8e8e8; 15 border: 4px solid #e8e8e8; 16 box-shadow: 0 0 3px #e8e8e8; 17 filter: blur(.4px); 18} 19 20.shadow { 21 height: 120px; 22 width: 120px; 23 border-radius: 50%; 24 background-color: #212121; 25 top: -5px; 26 left: 0; 27 animation: animate 3s infinite 1.5s; 28} 29 30@keyframes animate { 31 0% { 32 transform: translateX(150px); 33 background-color: #212121; 34 } 35 36 50% { 37 transform: translateX(-10px); 38 background-color: #212121; 39 } 40 41 100% { 42 transform: translateX(-170px); 43 background-color: #212121; 44 } 45} 46 47
784 views
784 views
Comments
MIT License