Skip to content

Instantly share code, notes, and snippets.

@MichaelArestad
Created September 16, 2014 22:32
Show Gist options
  • Save MichaelArestad/5a795c7efb1c756ae97f to your computer and use it in GitHub Desktop.
Save MichaelArestad/5a795c7efb1c756ae97f to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// 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);
}
}
.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