Skip to content

Instantly share code, notes, and snippets.

@maxwofford
Forked from lachlanjc/streak.css
Last active June 12, 2020 00:12
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save maxwofford/1ce8fb0d6fe23d202999994b7ab6ad18 to your computer and use it in GitHub Desktop.
Save maxwofford/1ce8fb0d6fe23d202999994b7ab6ad18 to your computer and use it in GitHub Desktop.
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