Skip to content

Instantly share code, notes, and snippets.

@JT5D
Forked from sehmaschine/gist:2045637
Created November 8, 2013 14:20
Show Gist options
  • Select an option

  • Save JT5D/7371671 to your computer and use it in GitHub Desktop.

Select an option

Save JT5D/7371671 to your computer and use it in GitHub Desktop.
/* 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