Created
May 7, 2015 19:13
-
-
Save bradrice/9c503d3e28eee0771b4d to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
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
// ---- | |
// 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%; | |
} | |
} |
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
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