Skip to content

Instantly share code, notes, and snippets.

@erikwco
Created October 6, 2013 22:45
Show Gist options
  • Save erikwco/6860113 to your computer and use it in GitHub Desktop.
Save erikwco/6860113 to your computer and use it in GitHub Desktop.
ResponsiveBreakPoints
/* 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