Created
October 31, 2013 19:16
-
-
Save justinph/7255211 to your computer and use it in GitHub Desktop.
MPR News base.less
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
// for IE8, we bring in these | |
@import "medium"; | |
@import "large"; | |
body{ | |
min-width: 980px; | |
} |
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
// phone, 0+ px | |
@import "base"; | |
// tablet/medium, starts at 541 px and up | |
@media only screen and (min-width: 33.8125em ){ //541px | |
@import "medium"; | |
} | |
// desktop/large, starts at 841px and up | |
@media only screen and (min-width: 52.5625em ){ //841px | |
@import "large"; | |
} | |
// Styles for larger screens. Contain multiple media queries | |
// These styles will not be read bye IE8 | |
@import "xlarge"; //bigger than 980px | |
@import "xxlarge"; //bigger than 1130px | |
// Print stylesheets | |
@import "print"; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment