Skip to content

Instantly share code, notes, and snippets.

@minipai
Created December 28, 2014 13:38
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 minipai/06057028e96b0b3b60ac to your computer and use it in GitHub Desktop.
Save minipai/06057028e96b0b3b60ac to your computer and use it in GitHub Desktop.
media query
$iphone-query = "only screen and (max-width: 480px)"
$ipad-query = "only screen and (min-width: 481px) and (max-width: 768px)"
$screen-query = "only screen and (min-width: 768px) and (max-width: 1300px)"
$wide-screen-query = "only screen and (min-width: 1301px)"
$tablet-query = "only screen and (max-width: 1024px)"
$mobile-query = "only screen and (max-width: 767px)"
$desktop-query = "only screen and (min-width: 768px)"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment