Created
September 16, 2014 18:53
-
-
Save MichaelArestad/07fbdbd6615f1728d6af to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
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
// ---- | |
// Sass (v3.3.14) | |
// Compass (v1.0.1) | |
// ---- | |
@mixin button($background: blue) { | |
background: $background; | |
border: 1px solid darken($background, 5%); | |
} | |
.button-primary { | |
@include button; | |
} | |
.button-secondary { | |
@include button(#eee); | |
} |
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
.button-primary { | |
background: blue; | |
border: 1px solid #0000e6; | |
} | |
.button-secondary { | |
background: #eeeeee; | |
border: 1px solid #e1e1e1; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment