Skip to content

Instantly share code, notes, and snippets.

@doubleswirve
Created November 4, 2013 20:12
Show Gist options
  • Save doubleswirve/7308514 to your computer and use it in GitHub Desktop.
Save doubleswirve/7308514 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// Sass (v3.3.0.rc.1)
// Compass (v0.13.alpha.10)
// ----
.half {
width: 200px;
@media (max-width: 768px) {
width: 50%;
}
}
.quarter {
width: 100px;
@media (max-width: 768px) {
width: 25%;
}
}
.half {
width: 200px;
}
@media (max-width: 768px) {
.half {
width: 50%;
}
}
.quarter {
width: 100px;
}
@media (max-width: 768px) {
.quarter {
width: 25%;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment