Skip to content

Instantly share code, notes, and snippets.

@hforbess
Created July 22, 2017 19:25
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hforbess/40f589eace96658136ccccba904618be to your computer and use it in GitHub Desktop.
Save hforbess/40f589eace96658136ccccba904618be to your computer and use it in GitHub Desktop.
simple loader css only
.loader {
border: 16px solid #f3f3f3; /* Light grey */
border-top: 16px solid #3498db; /* Blue */
border-radius: 50%;
width: 120px;
height: 120px;
animation: spin 2s linear infinite;
}
@keyframes spin {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment