Last active
July 9, 2017 16:37
-
-
Save maliMirkec/c724de23ce2bf456ce4781193baa2f8b to your computer and use it in GitHub Desktop.
Document typography with css locks
This file contains 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
@mixin css-locks($properties, $min-vw, $max-vw, $min-value, $max-value) { | |
@each $property in $properties { | |
#{$property}: $min-value; | |
} | |
@media screen and (min-width: $min-vw) { | |
@each $property in $properties { | |
#{$property}: calc(#{$min-value} + #{strip-unit($max-value - $min-value)} * (100vw - #{$min-vw}) / #{strip-unit($max-vw - $min-vw)}); | |
} | |
} | |
@media screen and (min-width: $max-vw) { | |
@each $property in $properties { | |
#{$property}: $max-value; | |
} | |
} | |
} | |
@function strip-unit($value) { | |
@return $value / ($value * 0 + 1); | |
} | |
@function em($pixels, $context: $default-font-size) { | |
@return #{$pixels/$context}em; | |
} | |
html { | |
@include css-locks(font-size, 20em, 75em, .8rem, 1.2rem); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment