-
-
Save JT5D/7371671 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
| /* Imports | |
| ------------------------------------------------------------------------------------------------------ */ | |
| @import "partials/base"; | |
| @import "blueprint"; | |
| @import "compass/typography/vertical_rhythm"; | |
| /* >1220px | |
| ------------------------------------------------------------------------------------------------------ */ | |
| @media screen and (min-width: 1220px) { | |
| // grid | |
| $blueprint-grid-columns: 24; | |
| $blueprint-grid-width: 25px; | |
| $blueprint-grid-margin: 25px; | |
| // baseline | |
| $relative-font-sizing: false; | |
| $base-font-size: 16px; | |
| $base-line-height: 24px; | |
| @include establish-baseline(16px); | |
| // grid applied | |
| div.container { | |
| @include container; // WRONG WIDTH ... WHY ??? | |
| } | |
| section#teaser { | |
| @include column(24, true); | |
| article { | |
| @include column(18, true); // RIGHT WIDTH ... YES!!! | |
| @include prepend(6); // WRONG MARGIN ... WHY ??? | |
| } | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment