Created
March 28, 2013 15:38
-
-
Save mcansky/5264159 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* 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