Skip to content

Instantly share code, notes, and snippets.

@roytomeij
Last active December 15, 2015 09:19
Show Gist options
  • Save roytomeij/5238036 to your computer and use it in GitHub Desktop.
Save roytomeij/5238036 to your computer and use it in GitHub Desktop.
$buttons: (
(sales, $color-button-sales-border, $color-button-sales-top, $color-button-sales-bottom),
(personal, $color-button-personal-border, $color-button-personal-top, $color-button-personal-bottom)
);
@each $button in $buttons {
.#{nth($button, 1)} {
background-color: nth($button, 2);
@include background-image(linear-gradient(nth($button, 3), nth($button, 4)));
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment