1.5K views
1/* SVG loader made by: csozi | Website: www.csozi.hu*/ 2 3/*You dont need this "p" style*/ 4.text { 5 font-weight: bolder; 6 font-size: 17px; 7 color: black; 8 position: absolute; 9 translate: -50% 0px; 10 left: 50%; 11 text-align: center; 12} 13 14.loader { 15 overflow: visible; 16 height: fit-content; 17 width: fit-content; 18 padding: 20px; 19 display: flex; 20} 21 22.logo { 23 fill: none; 24 stroke-dasharray: 20px; 25 /*<-- Play with this number until it look cool */ 26 stroke: black; 27 animation: load 15s infinite linear; 28} 29 30@keyframes load { 31 0% { 32 stroke-dashoffset: 0px; 33 } 34 35 100% { 36 stroke-dashoffset: 200px; 37 /* <-- This number should always be 10 times the number up there*/ 38 } 39}
MIT License