Skip to content

Instantly share code, notes, and snippets.

@splatio
Created September 16, 2013 23:29
Show Gist options
  • Save splatio/6588071 to your computer and use it in GitHub Desktop.
Save splatio/6588071 to your computer and use it in GitHub Desktop.
/* Header Area */
.l-branding {
@include breakpoint($tab) {
@include grid-span(1, 1);
}
}
.l-region--header {
@include breakpoint($tab) {
@include grid-span(1, 2);
}
}
.l-region--navigation {
@include breakpoint($tab) {
clear: both;
}
}
/* Content Area */
.l-content {
@include breakpoint($tab) {
@include grid-span(2, 1);
}
}
/* Sidebars */
.one-sidebar {
@include breakpoint($tab) {
.l-region--sidebar-first,
.l-region--sidebar-second {
@include grid-span(2, 1);
}
}
}
.two-sidebars {
@include breakpoint($tab) {
.l-region--sidebar-first,
.l-region--sidebar-second {
@include grid-span(2, 1);
}
.l-region--sidebar-first {
@include isolation-span(1, 1, 'both');
}
.l-region--sidebar-second {
@include grid-span(1, 2);
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment