Skip to content

Instantly share code, notes, and snippets.

@dbox
Last active January 16, 2016 18:45
Show Gist options
  • Save dbox/a4d18e2164ad0e4a0f70 to your computer and use it in GitHub Desktop.
Save dbox/a4d18e2164ad0e4a0f70 to your computer and use it in GitHub Desktop.
"responsive first" breakbpoint structure
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