Skip to content

Instantly share code, notes, and snippets.

@hellobrian
Last active November 24, 2015 23:40
Show Gist options
  • Select an option

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

Select an option

Save hellobrian/2eaec47abff3360c8f67 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// libsass (v3.2.5)
// ----
$white: #fff;
@mixin type($size, $color: $white) {
font-family: 'IBM Helvetica', Helvetica Neue, HelveticaNeue, Helvetica, sans-serif;
font-size: $size;
color: $color;
}
%p {
@include type(.875rem);
.light-theme & {
@include type(.875rem, black); // black is a temporary color for light-theme text color.
}
}
// or with %extend and class
// %p, .p {
// @include type(.875rem);
// .light-theme & {
// @include type(.875rem, black); // black is a temporary color for light-theme text color.
// }
// }
.card {
@extend %p;
}
.card {
font-family: 'IBM Helvetica', Helvetica Neue, HelveticaNeue, Helvetica, sans-serif;
font-size: 0.875rem;
color: #fff;
}
.light-theme .card {
font-family: 'IBM Helvetica', Helvetica Neue, HelveticaNeue, Helvetica, sans-serif;
font-size: 0.875rem;
color: black;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment