Skip to content

Instantly share code, notes, and snippets.

@maliMirkec
Last active July 9, 2017 16:37
Show Gist options
  • Save maliMirkec/c724de23ce2bf456ce4781193baa2f8b to your computer and use it in GitHub Desktop.
Save maliMirkec/c724de23ce2bf456ce4781193baa2f8b to your computer and use it in GitHub Desktop.
Document typography with css locks
@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