Skip to content

Instantly share code, notes, and snippets.

@boostbob
Created June 5, 2013 16:25
Show Gist options
  • Save boostbob/5715239 to your computer and use it in GitHub Desktop.
Save boostbob/5715239 to your computer and use it in GitHub Desktop.
foundation interchange named queries
named_queries : {
'default' : 'only screen and (min-width: 1px)',
small : 'only screen and (min-width: 768px)',
medium : 'only screen and (min-width: 1280px)',
large : 'only screen and (min-width: 1440px)',
landscape : 'only screen and (orientation: landscape)',
portrait : 'only screen and (orientation: portrait)',
retina : 'only screen and (-webkit-min-device-pixel-ratio: 2),'
+ 'only screen and (min--moz-device-pixel-ratio: 2),'
+ 'only screen and (-o-min-device-pixel-ratio: 2/1),'
+ 'only screen and (min-device-pixel-ratio: 2),'
+ 'only screen and (min-resolution: 192dpi),'
+ 'only screen and (min-resolution: 2dppx)'
},
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment