Skip to content

Instantly share code, notes, and snippets.

@ralexandr
Created October 19, 2016 09:37
Show Gist options
  • Save ralexandr/0c6324a18731b813f72c9f5cd9288fa0 to your computer and use it in GitHub Desktop.
Save ralexandr/0c6324a18731b813f72c9f5cd9288fa0 to your computer and use it in GitHub Desktop.
SASS: Button onhover background animation
button {
background-image: linear-gradient(#5187c4, #1c2f45);
background-size: auto 200%;
background-position: 0 100%;
transition: background-position 0.5s;
&:hover {
background-position: 0 0;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment