Last active
August 29, 2015 14:17
-
-
Save ZakharDay/1a61d3d1df756063297d 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
| $green: #00ff80; | |
| @mixin square($size: 100%) { | |
| width: $size; | |
| height: $size; | |
| } | |
| html, body { | |
| @include square; | |
| } | |
| .greenButton { | |
| background-color: $green; | |
| color: white; | |
| &:hover { | |
| background-color: darken(white, 10%); | |
| color: $green; | |
| } | |
| .icon { | |
| @include square(16px); | |
| background-image: url(images/icon.png); | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment