Skip to content

Instantly share code, notes, and snippets.

@AWaselnuk
Created February 6, 2015 14:25
Show Gist options
  • Save AWaselnuk/a45ee0ee4ba9702ab793 to your computer and use it in GitHub Desktop.
Save AWaselnuk/a45ee0ee4ba9702ab793 to your computer and use it in GitHub Desktop.
Single element CSS spinner
#spinner {
width: 150px;height: 150px;
-webkit-animation: sweep 1s infinite linear;
border-radius:75px;
border-bottom:5px solid #ccc;
}
@-webkit-keyframes sweep { to { -webkit-transform: rotate(360deg); } }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment