Skip to content

Instantly share code, notes, and snippets.

@mcansky
Created March 28, 2013 15:38
Show Gist options
  • Select an option

  • Save mcansky/5264159 to your computer and use it in GitHub Desktop.

Select an option

Save mcansky/5264159 to your computer and use it in GitHub Desktop.
/* global */
@import "5grid/core.css"
@import "style"
/* Large desktop */
@media (min-width: 1200px)
@import "5grid/core-1200px.css"
@import "style-1000px.css"
/* Portrait tablet to landscape and desktop */
@media (min-width: 768px) and (max-width: 979px)
@import "5grid/core-desktop.css"
@import "style-desktop.css"
/* Landscape phone to portrait tablet */
@media (max-width: 767px)
@import "style-mobile.css"
/* Landscape phones and down */
@media (max-width: 480px)
@import "style-mobile.css"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment