Created
October 6, 2013 22:45
-
-
Save erikwco/6860113 to your computer and use it in GitHub Desktop.
ResponsiveBreakPoints
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
/* 320 px */ | |
@media screen and (min-width: 20em) { | |
} | |
/* 480 px */ | |
@media screen and (min-width: 30em) { | |
} | |
/* 768px */ | |
@media screen and (min-width: 48em) { | |
} | |
/* 900px */ | |
@media screen and (min-width: 56.25em) { | |
} | |
/* 1100px */ | |
@media screen and (min-width: 68.75em) { | |
} | |
/* 1300px */ | |
@media screen and (min-width: 81.25em) { | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment