Skip to content

Instantly share code, notes, and snippets.

@Misiur
Created September 30, 2014 15:01
Show Gist options
  • Save Misiur/dcd02bb98aad8892e75b to your computer and use it in GitHub Desktop.
Save Misiur/dcd02bb98aad8892e75b to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// Sass (v3.4.4)
// Compass (v1.0.1)
// ----
.extendable {
width: 666px;
.handicapped & {
font-size: 20rem;
}
}
.random-class {
.extendable {
padding: 15px;
}
}
.my-class {
@extend .extendable;
color: #BADA55;
}
.extendable, .my-class {
width: 666px;
}
.handicapped .extendable, .handicapped .my-class {
font-size: 20rem;
}
.random-class .extendable, .random-class .my-class {
padding: 15px;
}
.my-class {
color: #BADA55;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment