Created
August 8, 2016 15:56
-
-
Save mikeyamadeo/0324f17e16b9b22b6a3df192b51fad99 to your computer and use it in GitHub Desktop.
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: 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