Skip to content

Instantly share code, notes, and snippets.

@chayn1k
Forked from eyy/media-query-mixins.styl
Created January 28, 2016 20:33
Show Gist options
  • Save chayn1k/c53b697051581556f71e to your computer and use it in GitHub Desktop.
Save chayn1k/c53b697051581556f71e to your computer and use it in GitHub Desktop.
Media query mixins for Stylus
// Media query mixins
mobile()
@media (max-width: 640px)
{block}
tablet()
@media (max-width: 800px)
{block}
desktop()
@media (max-width: 1200px)
{block}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment