Skip to content

Instantly share code, notes, and snippets.

@Sulcalibur
Forked from andyharris/ahtest001.scss
Created August 26, 2013 13:35
Show Gist options
  • Save Sulcalibur/6341474 to your computer and use it in GitHub Desktop.
Save Sulcalibur/6341474 to your computer and use it in GitHub Desktop.
$visual-grid : true;
// ---------------------------------------------------------------------------
// Imports
@import "bourbon/bourbon";
@import "neat/neat";
@import "neat/neat-helpers";
$landscape: new-breakpoint(min-width 480px 4);
$tablet: new-breakpoint(min-width 760px 8);
$desktop: new-breakpoint(min-width 960px 12);
header {
background: blue;
}
@include media($landscape) {
header {
background: red;
}
}
@include media($tablet) {
header {
background: pink;
}
}
@include media($desktop) {
header {
background: orange;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment