Skip to content

Instantly share code, notes, and snippets.

@jonbellah
Last active December 12, 2015 09:09
Show Gist options
  • Save jonbellah/4749788 to your computer and use it in GitHub Desktop.
Save jonbellah/4749788 to your computer and use it in GitHub Desktop.
Make links fade in and out
a {
color: #333;
transition: color 0.2s linear;
-o-transition: color 0.2s linear;
-moz-transition: color 0.2s linear;
-webkit-transition: color 0.2s linear;
}
a:hover {
color: #289dd6;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment