Skip to content

Instantly share code, notes, and snippets.

@basith374
Created March 2, 2019 09:00
Show Gist options
  • Save basith374/6929e4efcc665880ce5b3493a7f192de to your computer and use it in GitHub Desktop.
Save basith374/6929e4efcc665880ce5b3493a7f192de to your computer and use it in GitHub Desktop.
loading spinner css
.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