Skip to content

Instantly share code, notes, and snippets.

@hellobrian
Created November 13, 2015 05:58
Show Gist options
  • Select an option

  • Save hellobrian/a978cfe5839d5ad14ac5 to your computer and use it in GitHub Desktop.

Select an option

Save hellobrian/a978cfe5839d5ad14ac5 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// libsass (v3.2.5)
// ----
@mixin type($color, $size, $weight) {
font-family: 'Helvetica', sans-serif;
color: $color;
font-size: $size;
font-weight: $weight;
}
%h1 {
&--dark-ui {
@include type(white, 2rem, bold);
}
&--light-ui {
@include type(black, 2rem, bold);
}
}
.bx--light {
.h1--base {
@extend %h1--dark-ui;
}
}
.bx--dark {
.h1--base {
@extend %h1--light-ui
}
}
.bx--light .h1--base {
font-family: 'Helvetica', sans-serif;
color: white;
font-size: 2rem;
font-weight: bold;
}
.bx--dark .h1--base {
font-family: 'Helvetica', sans-serif;
color: black;
font-size: 2rem;
font-weight: bold;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment