Created
September 17, 2014 23:55
-
-
Save jdlehman/ad10c8d57ac2807bcfc8 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--disabled">Disabled Button</button> | |
| <button class="Btn-secondary">Secondary Button</button> | |
| <button class="Btn-secondary--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--disabled { | |
| background-color: grey; | |
| border-radius: 5px; | |
| color: white; | |
| padding: 0.5rem; | |
| } | |
| .Btn-secondary { | |
| background-color: white; | |
| border-radius: 5px; | |
| color: blue; | |
| padding: 0.5rem; | |
| } | |
| .Btn-secondary--disabled { | |
| background-color: light-grey; | |
| border-radius: 5px; | |
| color: blue; | |
| padding: 0.5rem; | |
| } |
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--disabled { | |
| background-color: grey; | |
| border-radius: 5px; | |
| color: white; | |
| padding: 0.5rem; | |
| } | |
| .Btn-secondary { | |
| background-color: white; | |
| border-radius: 5px; | |
| color: blue; | |
| padding: 0.5rem; | |
| } | |
| .Btn-secondary--disabled { | |
| background-color: light-grey; | |
| border-radius: 5px; | |
| color: blue; | |
| padding: 0.5rem; | |
| } |
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--disabled">Disabled Button</button> | |
| <button class="Btn-secondary">Secondary Button</button> | |
| <button class="Btn-secondary--disabled">Secondary Disabled Button</button> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment