Skip to content

Instantly share code, notes, and snippets.

@vurral
Created September 2, 2013 14:07
Show Gist options
  • Save vurral/6413254 to your computer and use it in GitHub Desktop.
Save vurral/6413254 to your computer and use it in GitHub Desktop.
Extended Foundation Media Queries
// remember the QUERIES
// no predefined query for small ( < 768px ), cause you should design mobile first!
@media #{$retina-small} { /* retina < 768px */ }
@media #{$small} { /* > 768px (medium) */ }
@media #{$retina-medium} { /* > 768px (retina-medium) */ }
@media #{$medium} { /* > 1280px (large) */ }
@media #{$retina-large} { /* > 1280px (retina-large) */ }
@media #{$large} { /* > 1440px (xlarge) */ }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment