Created
March 11, 2015 12:55
-
-
Save bradrice/affafea948c66aa8da0f 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
| // ---- | |
| // Sass (v3.4.12) | |
| // Compass (v1.0.3) | |
| // ---- | |
| @mixin family($size){ | |
| font-size: $size; | |
| @if $size <= 16px { | |
| font-family: Arial, sans-serif; | |
| } @else if $size <= 24px { | |
| font-family: Georgia, serif; | |
| } @else { | |
| font-family: Helvetica, sans-serif; | |
| } | |
| } | |
| .switch { | |
| @include family(14px); | |
| } |
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
| .switch { | |
| font-size: 14px; | |
| font-family: Arial, sans-serif; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment