Skip to content

Instantly share code, notes, and snippets.

@barbwiredmedia
Created June 11, 2015 20:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save barbwiredmedia/623456c2f7c86f50fe0e to your computer and use it in GitHub Desktop.
Save barbwiredmedia/623456c2f7c86f50fe0e to your computer and use it in GitHub Desktop.
Responsive text for various screen sizes (based on Bootstrap breakpoints)
html { font-size: inherit;}
body {
font-size: 14px;
}
@include bp-lg-min {
html { font-size: 18px;}
}
@include bp-lg-max {
html { font-size: 16px;}
}
@include bp-md-max {
html { font-size: 14px;}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment