Skip to content

Instantly share code, notes, and snippets.

@seyedi
Created October 29, 2014 07:44
Show Gist options
  • Save seyedi/dd137f7b8c9015574d94 to your computer and use it in GitHub Desktop.
Save seyedi/dd137f7b8c9015574d94 to your computer and use it in GitHub Desktop.
An example in oosass and using extend in sass
/* The best way */
%button {
min-width: 100px;
padding: 1em;
border-radius: 1em;
}
%twitter-background {
color: #fff;
background: #55acee;
}
%facebook-background {
color: #fff;
background: #3b5998;
}
.btn {
&--twitter {
@extend %button;
@extend %twitter-background;
}
&--facebook {
@extend %button;
@extend %facebook-background;
}
}
// Usage
// <a href="#" class="btn--twitter">Twitter</a>
// <a href="#" class="btn--facebook">Facebook</a>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment