Skip to content

Instantly share code, notes, and snippets.

@MichaelArestad
Created September 16, 2014 18:53
Show Gist options
  • Save MichaelArestad/07fbdbd6615f1728d6af to your computer and use it in GitHub Desktop.
Save MichaelArestad/07fbdbd6615f1728d6af 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%);
}
.button-primary {
@include button;
}
.button-secondary {
@include button(#eee);
}
.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