Skip to content

Instantly share code, notes, and snippets.

@seven-phases-max
Last active November 10, 2016 15:53
Show Gist options
  • Select an option

  • Save seven-phases-max/8c5adac99908000db905976ddfc468a4 to your computer and use it in GitHub Desktop.

Select an option

Save seven-phases-max/8c5adac99908000db905976ddfc468a4 to your computer and use it in GitHub Desktop.
.btn-base-styles {
&:hover, &:focus {/* styles */}
&.black {
background-color: black;
&:hover, &:focus {/* styles */}
}
&.red {
background-color: red;
&:hover, &:focus {/* styles */}
}
&.small {font-size: 12px}
}
// phew...:
#my-button {
.btn-base-styles;
.red;
.small;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment