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
// --------------------------- Font-scaling Algorithm ---------------------------- | |
// For the general strategy: https://www.codementor.io/ricardozea/100-responsive-typography-system-using-a-modular-scale-s5rhft58g | |
// Explanation contained herein: https://www.madebymike.com.au/writing/precise-control-responsive-typography/ | |
// ------------- | |
// Min and max viewport sizes to apply the font scaling | |
$min_width: 320; | |
$max_width: 1400; | |
// -------------- |
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 breakpoint($size) { | |
@media only screen and (min-width: $size) { | |
@content; | |
} | |
} | |
$size1: 1em; | |
$size300: 18.75em; |