Skip to content

Instantly share code, notes, and snippets.

@samtiffin
Created July 4, 2014 15:41
Show Gist options
  • Save samtiffin/926f5040fc66c028f34b to your computer and use it in GitHub Desktop.
Save samtiffin/926f5040fc66c028f34b to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// Sass (v3.3.9)
// Compass (v1.0.0.alpha.20)
// ----
.this {
color: red;
}
.this {
& {
color: red;
}
}
.this {
&.foo {
color: red;
}
}
.this {
& .foo {
color: red;
}
}
.this {
.foo & {
color: red;
}
}
.this {
.foo {
.bar {
& .test {
color: red;
}
}
}
}
.this {
.foo {
.bar {
.test & {
color: red;
}
}
}
}
.this {
color: red;
}
.this {
color: red;
}
.this.foo {
color: red;
}
.this .foo {
color: red;
}
.foo .this {
color: red;
}
.this .foo .bar .test {
color: red;
}
.test .this .foo .bar {
color: red;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment