Skip to content

Instantly share code, notes, and snippets.

@alxjrvs
Created October 8, 2014 02:26
Show Gist options
  • Save alxjrvs/20b54fccec6144c88342 to your computer and use it in GitHub Desktop.
Save alxjrvs/20b54fccec6144c88342 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
.button
Click
.button--error
Error
.button--success
Success
.button--pending
Pending
// ----
// Sass (v3.4.4)
// Compass (v1.0.1)
// ----
// Using Ampersands to change elements per container
.button {
background: white;
height: 40px;
.container & {
background: black;
}
form &--success {
background: green;
}
form &--failure {
background: red;
}
};
.button {
background: white;
height: 40px;
}
.container .button {
background: black;
}
form .button--success {
background: green;
}
form .button--failure {
background: red;
}
.button
Click
.button--error
Error
.button--success
Success
.button--pending
Pending
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment