Last active
May 3, 2016 16:03
-
-
Save regepan/16648bef8fd9bec64becf82e28a3c2e0 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* $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