Skip to content

Instantly share code, notes, and snippets.

@fastmover
Created February 11, 2019 22:23
Show Gist options
  • Save fastmover/8ab1437649bdd01ac44f0bcd3b5efdf0 to your computer and use it in GitHub Desktop.
Save fastmover/8ab1437649bdd01ac44f0bcd3b5efdf0 to your computer and use it in GitHub Desktop.
CSS makes me laugh
* {
animation: rotations 5s infinite;
}
@keyframes rotations {
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