Skip to content

Instantly share code, notes, and snippets.

View jrosczyk's full-sized avatar

Jeffrey Rosczyk jrosczyk

  • University of Michigan
View GitHub Profile
@jrosczyk
jrosczyk / rwd.css
Created November 5, 2012 18:40 — forked from trey/rwd.css
Bootstrap's RWD breakpoints
/* http://twitter.github.com/bootstrap/scaffolding.html#responsive */
/* Landscape phones and down */
@media (max-width: 480px) { ... }
/* Landscape phone to portrait tablet */
@media (max-width: 768px) { ... }
/* Portrait tablet to landscape and desktop */
@media (min-width: 768px) and (max-width: 940px) { ... }