/* This is what this article proposed http://thesassway.com/intermediate/using-object-oriented-css-with-sass */ %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; } }