Created
March 2, 2019 09:00
-
-
Save basith374/6929e4efcc665880ce5b3493a7f192de to your computer and use it in GitHub Desktop.
loading 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
| .ld-ring div { | |
| width: 20px; | |
| height: 20px; | |
| border-radius: 50%; | |
| border-width: 1px; | |
| border-style: solid; | |
| border-color: #555 transparent #555 transparent; | |
| animation: ld-ring 0.7s linear infinite; | |
| margin: 0 auto; | |
| } | |
| @keyframes ld-ring { | |
| 0% {transform: rotate(0);} | |
| 100% {transform: rotate(360deg);} | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment