Created
February 11, 2019 22:23
-
-
Save fastmover/8ab1437649bdd01ac44f0bcd3b5efdf0 to your computer and use it in GitHub Desktop.
CSS makes me laugh
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
* { | |
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