-
-
Save Sulcalibur/6341474 to your computer and use it in GitHub Desktop.
This file contains 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
$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