Skip to content

Instantly share code, notes, and snippets.

@kureikei
Created February 14, 2015 10:21
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 kureikei/10d086d5dd65d02d88d6 to your computer and use it in GitHub Desktop.
Save kureikei/10d086d5dd65d02d88d6 to your computer and use it in GitHub Desktop.
.loader {
display: inline-block;
width: 36px;
height: 36px;
animation: spin 1s infinite linear;
}
@keyframes spin {
from {
transform: rotate(0deg);
}
to {
transform: rotate(360deg);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment