Forked from tommymarshall/SassMeister-input-HTML.html
Created
November 26, 2013 18:49
-
-
Save greypants/7663692 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
<button class="button -blue -large -rounded overrides -disable -right">I'm a button!</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
// ---- | |
// Sass (v3.3.0.rc.1) | |
// Compass (v0.13.alpha.10) | |
// ---- | |
.button { | |
padding: 1em 2em; | |
float: left; | |
&.-blue { | |
background: #00f; | |
} | |
&.-large { | |
font-size: 36px; | |
} | |
&.-rounded { | |
border-radius: 10px; | |
} | |
} | |
// Global Overrides | |
.overrides { | |
&.-disable { | |
opacity: 0.5; | |
pointer-events: none; | |
} | |
&.-right { | |
float: right; | |
} | |
} |
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
.button { | |
padding: 1em 2em; | |
float: left; | |
} | |
.button.-blue { | |
background: #00f; | |
} | |
.button.-large { | |
font-size: 36px; | |
} | |
.button.-rounded { | |
border-radius: 10px; | |
} | |
.overrides.-disable { | |
opacity: 0.5; | |
pointer-events: none; | |
} | |
.overrides.-right { | |
float: right; | |
} |
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
<button class="button -blue -large -rounded overrides -disable -right">I'm a button!</button> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment