Created
September 16, 2014 22:32
-
-
Save MichaelArestad/5a795c7efb1c756ae97f 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%); | |
} | |
$buttons:( | |
primary:( | |
background: blue | |
), | |
secondary:( | |
background: green | |
) | |
); | |
@each $type in map-keys($buttons) { | |
.button-#{$type} { | |
$button-color: map-get(map-get($buttons, $type), background); | |
@include button($button-color); | |
} | |
} |
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: green; | |
border: 1px solid #006700; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment