Skip to content

Instantly share code, notes, and snippets.

View azinasili's full-sized avatar
😎
Learning

Azin Asili azinasili

😎
Learning
View GitHub Profile
@azinasili
azinasili / fluid-typography.scss
Last active June 20, 2016 05:05 — forked from iksi/fluid-typography.css
Fluid typography between a min & max font-size and molten leading
// Fluid typography between a min & max font-size and molten leading
// calc(minSize + (maxSize - minSize) * ((100vw - minPort) / (maxPort - minPort)));
// Works best with `em` or `rem` units
$typography: (
'font-min': 1em,
'font-max': 1.5em,
'lead-min': 1.3em,
'lead-max': 1.7em,
'width-min': 20em,
'width-max': 80em,