Created
December 31, 2020 17:20
-
-
Save tacsio/f531242ba692f3ed0479c1e390efc647 to your computer and use it in GitHub Desktop.
spinner.css
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.spinner { | |
border: 5px solid rgba(0, 0, 0, 0.1); | |
border-left-color: #22a6b3; | |
border-radius: 50%; | |
width: 25px; | |
height: 25px; | |
animation: spin 1s linear infinite; | |
} | |
@keyframes spin { | |
to { | |
transform: rotate(360deg); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment