-
-
Save maxwofford/1ce8fb0d6fe23d202999994b7ab6ad18 to your computer and use it in GitHub Desktop.
This file contains 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
body { | |
font-family: 'Avenir Next', system-ui; | |
} | |
h1 { | |
color: #ec3750; | |
} | |
img { | |
animation: spin 10s linear infinite; | |
animation-play-state: paused; | |
} | |
img:hover { | |
animation-play-state: running; | |
} | |
@keyframes spin { | |
0% { | |
transform: rotateZ(0); | |
} | |
100% { | |
transform: rotateZ(360deg); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment