Created
December 21, 2016 23:12
-
-
Save italodr/18fef232b4275f6d56195feab8deb0e8 to your computer and use it in GitHub Desktop.
A mixin for Mike Riethmuller fluid typography
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
@mixin fluid-type($min-font-size, $max-font-size, $min-vw: 480px, $max-vw: 1200px) { | |
$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; | |
@if $min-vw != $max-vw { | |
@media only 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 only screen and (min-width: $max-vw) { | |
font-size: $max-font-size; | |
} | |
} | |
@else { | |
@error"Detected mixed units. Please use the same units for all parameters."; | |
} | |
} | |
@function strip-unit($number) { | |
@return $number / ($number * 0 + 1); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment