Skip to content

Instantly share code, notes, and snippets.

@connorrothschild
Created August 21, 2020 14:52
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 connorrothschild/afcfb2f62672a61b8c4fb06a9bc33d99 to your computer and use it in GitHub Desktop.
Save connorrothschild/afcfb2f62672a61b8c4fb06a9bc33d99 to your computer and use it in GitHub Desktop.
#about {
@keyframes yourfirstanimation {
0% {opacity: 0; color: red;}
100% {opacity: 1; color: black;}
}
.biography-title {
animation: yourfirstanimation 5s forwards;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment