Skip to content

Instantly share code, notes, and snippets.

@web-crab
Created November 26, 2019 09:12
Show Gist options
  • Save web-crab/9968e8b2238adf34238c31be82a87ec4 to your computer and use it in GitHub Desktop.
Save web-crab/9968e8b2238adf34238c31be82a87ec4 to your computer and use it in GitHub Desktop.
$min-mobile-width = 320
$max-desktop-width = 1200
html
font-size: 10px
@media (max-width: $min-mobile-width)
font-size calc((100vw / $min-mobile-width) * 10)
@media(orientation: landscape)
font-size calc(10px - (100vw - 100vh) / 100)
@media (min-width: $max-desktop-width)
font-size calc((100vw / $max-desktop-width) * 10)
body
font-size 1.6rem
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment