Media Queries (http://scottjehl.github.io/CSS-Download-Tests/) From https://developer.mozilla.org/en-US/docs/Web/Guide/CSS/Media_queries
@media (min-width: 700px) { ... }
@media (min-width: 700px) and (orientation: landscape) { ... }
@media tv and (min-width: 700px) and (orientation: landscape) { ... }
@media (min-width: 700px), handheld and (orientation: landscape) { ... }