Skip to content

Instantly share code, notes, and snippets.

@disinfeqt
Created March 7, 2011 15:44
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save disinfeqt/858656 to your computer and use it in GitHub Desktop.
Save disinfeqt/858656 to your computer and use it in GitHub Desktop.
CSS3 Buttons Made Easy
@start: #9bce4c; @end: #6f9f27;
.button-gradient (@start, @end);
&:hover {
.button-gradient (darken(@start, 2%), darken(@end, 2%));
}
&:active {
.button-gradient (darken(@end, 2%), darken(@start, 2%));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment