Skip to content

Instantly share code, notes, and snippets.

@Tmeister
Created March 7, 2019 15: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 Tmeister/f01ba410c155c344cdd141828003ec7d to your computer and use it in GitHub Desktop.
Save Tmeister/f01ba410c155c344cdd141828003ec7d to your computer and use it in GitHub Desktop.
Quick Sample
/*
* Device = Laptops, Desktops
*/
@media (min-width: 1025px){
body{
font-size: 18px;
}
}
/*
* Device = Tablets
*/
@media (min-width: 768px) and (max-width: 1024px) {
body{
font-size: 17px;
}
}
/*
* Device Mobiles
*/
@media (max-width: 767px) {
body{
font-size: 16px;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment