Skip to content

Instantly share code, notes, and snippets.

@uniqname
Created November 26, 2014 22:38
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 uniqname/fa3112e7af605da1c5ed to your computer and use it in GitHub Desktop.
Save uniqname/fa3112e7af605da1c5ed to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// Sass (v3.3.14)
// Compass (v1.0.1)
// ----
//Media Queries
$mq-size--small: 42em;
$mq-size--med: 47.5em;
$mq-size--large: 56.25em;
$mq-scale-dir: "min-width"; //"max-width"
$mq--small: "only screen and (#{$mq-scale-dir}: #{$mq-size--small})";
$mq--med: "only screen and (#{$mq-scale-dir}: #{$mq-size--med})";
$mq--large: "only screen and (#{$mq-scale-dir}: #{$mq-size--large})";
@media #{$mq--med} {
.sidebar {
width: 33.3%;
}
}
@media only screen and (min-width: 47.5em) {
.sidebar {
width: 33.3%;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment