Skip to content

Instantly share code, notes, and snippets.

@hmans
Created April 10, 2012 13:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hmans/2351247 to your computer and use it in GitHub Desktop.
Save hmans/2351247 to your computer and use it in GitHub Desktop.
@mixin when-sized-medium { @include when-narrower-than(1000px) { @content }}
@mixin when-sized-small { @include when-narrower-than(700px) { @content }}
.container {
width: 1000px;
margin: 0 auto;
padding-bottom: 40px;
@include when-sized-medium { width: 700px; }
@include when-sized-small {
width: 100%;
font-size: 85%;
margin: 0;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment