Skip to content

Instantly share code, notes, and snippets.

@benji-chen
Created January 24, 2021 12:38
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 benji-chen/e17ab4e4e36cb60d6b38251c267aa58a to your computer and use it in GitHub Desktop.
Save benji-chen/e17ab4e4e36cb60d6b38251c267aa58a to your computer and use it in GitHub Desktop.
CSS uploaded by scrapbook.hackclub.com/customizer
@keyframes rotate {
0% {
transform: rotate(0deg);
}
50% {
transform: rotate(180deg);
}
100% {
transform: rotate(360deg);
}
}
.header-title-avatar {
animation: rotate 5s infinite;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment