Skip to content

Instantly share code, notes, and snippets.

@regepan
Last active May 3, 2016 16:03
Show Gist options
  • Save regepan/16648bef8fd9bec64becf82e28a3c2e0 to your computer and use it in GitHub Desktop.
Save regepan/16648bef8fd9bec64becf82e28a3c2e0 to your computer and use it in GitHub Desktop.
/* $screen-xs */
@media (max-width: 479px) {}/* 479px and down */
@media (min-width: 480px) {}/* 480px and up */
/* $screen-sm */
@media (max-width: 767px) {}/* 767px and down */
@media (min-width: 768px) {}/* 768px and up */
/* $screen-md */
@media (max-width: 991px) {}/* 991px and down */
@media (min-width: 992px) {}/* 992px and up */
/* $screen-lg */
@media (max-width: 1199px) {}/* 1199px and down */
@media (min-width: 1200px) {}/* 1200px and up */
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment