Skip to content

Instantly share code, notes, and snippets.

@jdlich
Created February 15, 2016 01:07
Show Gist options
  • Save jdlich/a8feec9247132b097de2 to your computer and use it in GitHub Desktop.
Save jdlich/a8feec9247132b097de2 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// libsass (v3.2.5)
// ----
$colors: (inverted, #ffffff) (primary, blue) (accent, red);
@mixin borders($modifier: "") {
@each $color in $colors {
$color-keyword: nth($color, 1);
$color-hex: nth($color, 2);
.border-#{$color-keyword}-#{$modifier} {
border-color: $color-hex;
@content;
}
}
}
@include borders($modifier: "thick") {
border-width: 3px;
};
.border-inverted-thick {
border-color: #ffffff;
border-width: 3px;
}
.border-primary-thick {
border-color: blue;
border-width: 3px;
}
.border-accent-thick {
border-color: red;
border-width: 3px;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment