Last active
January 16, 2016 18:45
-
-
Save dbox/a4d18e2164ad0e4a0f70 to your computer and use it in GitHub Desktop.
"responsive first" breakbpoint structure
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
section.section-title { | |
// rules | |
article { } | |
h1 { } | |
p { } | |
.specific-div { } | |
// Rules for only smaller sizes | |
@include media('<tablet') { | |
// rules | |
article { } | |
h1 { } | |
p { } | |
} | |
// Rules for only larger sizes | |
@include media('>=tablet') { | |
// rules | |
article { } | |
h1 { } | |
p { } | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment