/*! ======================================================================== PRECISE CONTROL OVER RESPONSIVE TYPOGRAPHY FOR SASS --------------------------------------------------- Author: Indrek Paas <@indrekpaas> Inspired by Mike Riethmuller's Precise control over responsive typography http://madebymike.com.au/writing/precise-control-responsive-typography/ `strip-unit()` function by Hugo Giraudel ======================================================================== */ html { font-size: 14px; } @media screen and (min-width: 320px) { html { font-size: calc(14px + 4 * ((100vw - 320px) / 1046)); } } @media screen and (min-width: 1366px) { html { font-size: 18px; } }