Created
September 16, 2015 08:50
-
-
Save scheibome/3bf5ecc2ef042efd9177 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) | |
// ---- | |
$tablet: 786px; | |
$desktop: 1024px; | |
$desktopwide: 1200px; | |
$font-sizes: ( | |
null: 14px, | |
$tablet: 20px, | |
$desktop: 25px | |
); | |
@mixin font-size($fs-map) { | |
@each $fs-breakpoint, $fs-font-size in $fs-map { | |
@if $fs-breakpoint == null { | |
font-size: $fs-font-size; | |
} | |
@else { | |
@media screen and (min-width: $fs-breakpoint) { | |
font-size: $fs-font-size; | |
} | |
} | |
} | |
} | |
.section { | |
@include font-size($font-sizes); | |
} |
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
.section { | |
font-size: 14px; | |
} | |
@media screen and (min-width: 786px) { | |
.section { | |
font-size: 20px; | |
} | |
} | |
@media screen and (min-width: 1024px) { | |
.section { | |
font-size: 25px; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment