Skip to content

Instantly share code, notes, and snippets.

@iamskok
Created October 14, 2015 00:03
Show Gist options
  • Save iamskok/ee3c9e1f04a9106092ec to your computer and use it in GitHub Desktop.
Save iamskok/ee3c9e1f04a9106092ec to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// libsass (v3.2.5)
// ----
$buttons: (
'error': (#d82d2d, #666),
'success': (#52bf4a, #fff),
'warning': (#c23435, #fff)
);
.button {
display: inline-block;
padding: .5em;
background: #ccc;
color: #666;
@each $name, $colors in $buttons {
$bgcolor: nth($colors, 1);
$fontcolor: nth($colors, 2);
&--#{$name} {
background-color: $bgcolor;
color: $fontcolor;
}
}
}
.button {
display: inline-block;
padding: .5em;
background: #ccc;
color: #666;
}
.button--error {
background-color: #d82d2d;
color: #666;
}
.button--success {
background-color: #52bf4a;
color: #fff;
}
.button--warning {
background-color: #c23435;
color: #fff;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment