Skip to content

Instantly share code, notes, and snippets.

@josephdburdick
Last active August 29, 2015 13:57
Show Gist options
  • Save josephdburdick/9592025 to your computer and use it in GitHub Desktop.
Save josephdburdick/9592025 to your computer and use it in GitHub Desktop.
Stylus Utility Belt: _mediaqueries.styl
// Responsive + Retina
retina = '(-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dppx)'
xs = '(max-width: 767px)'
sm = '(min-width: 768px) and (max-width: 991px)'
md = '(min-width: 992px) and (max-width: 1199px)'
lg = '(min-width: 1200px)'
lt-lg = '(max-width: 1199px)'
lt-md = '(max-width: 991px)'
lt-sm = '(max-width: 767px)'
gt-xs = '(min-width: 767px)'
gt-sm = '(min-width: 991px)'
gt-md = '(min-width: 1119px)'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment