Created
March 17, 2015 12:01
-
-
Save ZakharDay/3c4dd2e0a75ec5c597fa to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| @import "compass/css3"; | |
| $green: #00ff80; | |
| .greenButton { | |
| @include background-image(linear-gradient(to bottom right, lighten($green, 10%), darken($green, 10%))); | |
| color: white; | |
| &:hover { | |
| @include background-image(linear-gradient(to bottom right, lighten(white, 10%), darken(white, 10%))); | |
| color: $green; | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment