Created
September 18, 2014 01:32
-
-
Save jdlehman/5d97c03de86bd194a007 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
This file contains hidden or 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
| <button class="Btn">Just a Button</button> | |
| <button class="Btn Btn--disabled">Disabled Button</button> | |
| <button class="Btn Btn-secondary">Secondary Button</button> | |
| <button class="Btn Btn-secondary Btn--disabled">Secondary Disabled Button</button> |
This file contains hidden or 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
| // ---- | |
| // Sass (v3.4.4) | |
| // Compass (v1.0.1) | |
| // ---- | |
| .Btn { | |
| background-color: blue; | |
| border-radius: 5px; | |
| color: white; | |
| padding: 0.5rem; | |
| // .Btn-secondary | |
| &-secondary { | |
| background-color: white; | |
| color: blue; | |
| } | |
| // .Btn--disabled | |
| &--disabled { | |
| background-color: grey; | |
| } | |
| } |
This file contains hidden or 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
| .Btn { | |
| background-color: blue; | |
| border-radius: 5px; | |
| color: white; | |
| padding: 0.5rem; | |
| } | |
| .Btn-secondary { | |
| background-color: white; | |
| color: blue; | |
| } | |
| .Btn--disabled { | |
| background-color: grey; | |
| } |
This file contains hidden or 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
| <button class="Btn">Just a Button</button> | |
| <button class="Btn Btn--disabled">Disabled Button</button> | |
| <button class="Btn Btn-secondary">Secondary Button</button> | |
| <button class="Btn Btn-secondary Btn--disabled">Secondary Disabled Button</button> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment