Skip to content

Instantly share code, notes, and snippets.

View benbowler's full-sized avatar

Ben Bowler benbowler

View GitHub Profile
@benbowler
benbowler / responsiveness.css
Created May 22, 2013 16:44
Want the base CSS for a responsive website? I've used this so many times recently.
/* Responsiveness */
/* Large desktop */
@media (min-width: 1200px) {
}
/* Portrait tablet to landscape and desktop */
@media (min-width: 768px) and (max-width: 979px) {