Created
June 18, 2015 23:15
-
-
Save juddlyon/dbeddc79d9711cde8e33 to your computer and use it in GitHub Desktop.
PureCSS RWD Default Breakpoints
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
/* small (568px) */ | |
@media screen and (min-width: 35.5em) { | |
} | |
/* medium (768px) */ | |
@media screen and (min-width: 48em) { | |
} | |
/* large (1024px) */ | |
@media screen and (min-width: 64em) { | |
} | |
/* extra large (1280px) */ | |
@media screen and (min-width: 80em) { | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment