Skip to content

Instantly share code, notes, and snippets.

@blackfalcon
Created December 22, 2012 00:17
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 blackfalcon/4356737 to your computer and use it in GitHub Desktop.
Save blackfalcon/4356737 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com, the Sass playground.
// Sass v3.2.3
// Stipe v0.0.5.4/n/n@import "./sass/stipe";
.block {
width: 80em;
@media #{$mobile} {
width: 100%;
}
}
.foo {
background: orange;
@media #{$mobile} {
background: green;
}
}
.block {
width: 80em;
}
@media screen and (max-width: 40em) {
.block {
width: 100%;
}
}
.foo {
background: orange;
}
@media screen and (max-width: 40em) {
.foo {
background: green;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment