Last active
November 24, 2015 23:40
-
-
Save hellobrian/2eaec47abff3360c8f67 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // ---- | |
| // 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; | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| .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