Created
June 10, 2015 11:18
-
-
Save hafizio/2731e6525fb75082a564 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 btn--large"> | |
<a class="btn__title">Hello</a> | |
<p class="btn__content">Hi there</p> | |
</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.13) | |
// Compass (v1.0.3) | |
// ---- | |
.btn { | |
width: auto; | |
border: 1px solid black; | |
/* e */ | |
&__title { | |
font-size: large; | |
} | |
&__content { | |
font-size: small; | |
color: tomato; | |
&--blue { | |
color: blue; | |
} | |
} | |
/* m */ | |
&--large { | |
height: 200%; | |
color: green; | |
} | |
&--medium { | |
height: 10px; | |
} | |
} |
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 { | |
width: auto; | |
border: 1px solid black; | |
/* e */ | |
/* m */ | |
} | |
.btn__title { | |
font-size: large; | |
} | |
.btn__content { | |
font-size: small; | |
color: tomato; | |
} | |
.btn__content--blue { | |
color: blue; | |
} | |
.btn--large { | |
height: 200%; | |
color: green; | |
} | |
.btn--medium { | |
height: 10px; | |
} |
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 btn--large"> | |
<a class="btn__title">Hello</a> | |
<p class="btn__content">Hi there</p> | |
</button> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment