Created
February 3, 2016 21:47
-
-
Save pdokas/c420187ac355361427f1 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ---- | |
// libsass (v3.3.2) | |
// ---- | |
%blue { | |
color: blue; | |
} | |
%border { | |
border: 1px solid black; | |
} | |
%padding { | |
padding: 10px; | |
} | |
div { | |
@extend %blue, %border, %padding; | |
} | |
button { | |
@extend %blue, %border, %padding; | |
} | |
.danger { | |
@extend button; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
div, button, .danger { | |
color: blue; | |
} | |
div, button, .danger { | |
border: 1px solid black; | |
} | |
div, button, .danger { | |
padding: 10px; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment