Last active
June 4, 2019 13:25
-
-
Save nathobson/d9e5e73a9587e784faabe24ee11a16a1 to your computer and use it in GitHub Desktop.
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
/************************************************************** | |
-> Usage: @include fluid-type(650px, 1600px, 16px, 32px); | |
**************************************************************/ | |
@function strip-unit($value) { | |
@return $value / ($value * 0 + 1); | |
} | |
@mixin fluid-type($min-vw, $max-vw, $min-font-size, $max-font-size) { | |
$u1: unit($min-vw); | |
$u2: unit($max-vw); | |
$u3: unit($min-font-size); | |
$u4: unit($max-font-size); | |
@if $u1 == $u2 and $u1 == $u3 and $u1 == $u4 { | |
& { | |
font-size: $min-font-size; | |
@media screen and (min-width: $min-vw) { | |
font-size: calc(#{$min-font-size} + #{strip-unit($max-font-size - $min-font-size)} * ((100vw - #{$min-vw}) / #{strip-unit($max-vw - $min-vw)})); | |
} | |
@media screen and (min-width: $max-vw) { | |
font-size: $max-font-size; | |
} | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment