Skip to content

Instantly share code, notes, and snippets.

@jupegarnica
Forked from lonekorean/gist:7759870
Last active January 4, 2016 00:29
Show Gist options
  • Select an option

  • Save jupegarnica/8542441 to your computer and use it in GitHub Desktop.

Select an option

Save jupegarnica/8542441 to your computer and use it in GitHub Desktop.
Button Hover effect. nice one!
button {
background-image: linear-gradient(#5187c4, #1c2f45);
background-size: auto 200%;
background-position: 0 100%;
transition: background-position 0.5s;
/* ...and various other button styles */
}
button:hover {
background-position: 0 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment