Skip to content

Instantly share code, notes, and snippets.

@EvanLovely
Last active August 29, 2015 14:06
Show Gist options
  • Save EvanLovely/f4c787b237ac086a6e10 to your computer and use it in GitHub Desktop.
Save EvanLovely/f4c787b237ac086a6e10 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// Sass (v3.3.14)
// Compass (v1.0.1)
// ----
.block {
color: red;
&__title {
text-transform: uppercase;
}
.sidebar & {
color: blue;
}
.lt-ie9 & {
color: green;
}
@media (min-width: 960px) {
color: black;
}
}
.block {
color: red;
}
.block__title {
text-transform: uppercase;
}
.sidebar .block {
color: blue;
}
.lt-ie9 .block {
color: green;
}
@media (min-width: 960px) {
.block {
color: black;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment