#e8e8e8
1.loader { 2 width: 150px; 3 height: 150px; 4 border-radius: 50%; 5 background: hsla(0, 100%, 95%, 1); 6 background: linear-gradient(90deg, hsla(0, 100%, 95%, 1) 1%, hsla(27, 100%, 85%, 1) 99%); 7 background: -moz-linear-gradient(90deg, hsla(0, 100%, 95%, 1) 1%, hsla(27, 100%, 85%, 1) 99%); 8 background: -webkit-linear-gradient(90deg, hsla(0, 100%, 95%, 1) 1%, hsla(27, 100%, 85%, 1) 99%); 9 filter: progid: DXImageTransform.Microsoft.gradient( startColorstr="#ffe3e3", endColorstr="#FFD5B2", GradientType=1 ); 10 box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 4px, rgba(0, 0, 0, 0.3) 0px 7px 13px -3px, rgba(0, 0, 0, 0.2) 0px -3px 0px inset; 11 animation: rotate 2.0s infinite linear; 12} 13 14@keyframes rotate { 15 100% { 16 transform: rotate(1turn); 17 } 18} 19
133 views
Variation of aloader
133 views
Variation of aloader
Comments
MIT License