Skip to content

Instantly share code, notes, and snippets.

@ajace
Created July 26, 2013 03:32
Show Gist options
  • Save ajace/6085935 to your computer and use it in GitHub Desktop.
Save ajace/6085935 to your computer and use it in GitHub Desktop.
ipad and iphone media queries. example use: @media #{$desktop}
$ipad: "only screen and (min-width: 569px) and (max-width: 1024px)";
$ipad-l: "only screen and (min-width: 769px) and (max-width: 1024px)";
$ipad-p: "only screen and (min-width : 481px) and (max-width : 768px)";
$iphone: "only screen and (min-width: 320px) and (max-width: 568px)";
$iphone-l:"only screen and (min-width: 321px) and (max-width: 568px)";
$iphone-p: "only screen and (max-width: 320px)";
$desktop: "only screen and (min-width: 1224px)";
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment