Skip to content

Instantly share code, notes, and snippets.

@justinhough
Last active May 17, 2016 02:58
Show Gist options
  • Save justinhough/8bbf18ab491140ae679b268297910b43 to your computer and use it in GitHub Desktop.
Save justinhough/8bbf18ab491140ae679b268297910b43 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// libsass (v3.3.6)
// ----
$colors: (
lightblue: lightblue,
blue: blue,
black: #000000,
white: #ffffff
);
@each $class, $color in $colors {
.bk--#{$class} {
background-color: $color;
}
}
$headers: (
h1: 2rem,
h2: 1.5rem,
h3: 1.2rem
);
@each $header, $size in $headers {
#{$header} {
font-size: $size;
}
}
$alerts: (
success: green,
alert: red,
info: blue
);
@each $alert, $alert-color in $alerts {
.icon-#{$alert} {
background-color: $alert-color;
}
}
.bk--lightblue {
background-color: lightblue; }
.bk--blue {
background-color: blue; }
.bk--black {
background-color: #000000; }
.bk--white {
background-color: #ffffff; }
h1 {
font-size: 2rem; }
h2 {
font-size: 1.5rem; }
h3 {
font-size: 1.2rem; }
.icon-success {
background-color: green; }
.icon-alert {
background-color: red; }
.icon-info {
background-color: blue; }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment