Skip to content

Instantly share code, notes, and snippets.

@mikeyamadeo
Created August 8, 2016 15:56
Show Gist options
  • Save mikeyamadeo/0324f17e16b9b22b6a3df192b51fad99 to your computer and use it in GitHub Desktop.
Save mikeyamadeo/0324f17e16b9b22b6a3df192b51fad99 to your computer and use it in GitHub Desktop.
* {
animation: spin 10s infinite;
}
span {
font-size: .5em;
animation: spin .25s infinite;
}
@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