Skip to content

Instantly share code, notes, and snippets.

@bradrice
Created May 7, 2015 19:13
Show Gist options
  • Save bradrice/9c503d3e28eee0771b4d to your computer and use it in GitHub Desktop.
Save bradrice/9c503d3e28eee0771b4d to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// Sass (v3.4.13)
// Compass (v1.0.3)
// ----
@mixin respond-to($width){
@media (min-width: $width){
@content;
}
}
div.main {
border: 1px solid #000;
@include respond-to(750px){
float: left;
width: 75%;
}
}
div.main {
border: 1px solid #000;
}
@media (min-width: 750px) {
div.main {
float: left;
width: 75%;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment