Skip to content

Instantly share code, notes, and snippets.

@bradrice
Created March 11, 2015 12:55
Show Gist options
  • Select an option

  • Save bradrice/affafea948c66aa8da0f to your computer and use it in GitHub Desktop.

Select an option

Save bradrice/affafea948c66aa8da0f to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// 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);
}
.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