Skip to content

Instantly share code, notes, and snippets.

@scheibome
Created September 16, 2015 08:50
Show Gist options
  • Save scheibome/3bf5ecc2ef042efd9177 to your computer and use it in GitHub Desktop.
Save scheibome/3bf5ecc2ef042efd9177 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// 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);
}
.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