Skip to content

Instantly share code, notes, and snippets.

@hafizio
Created June 10, 2015 11:18
Show Gist options
  • Save hafizio/2731e6525fb75082a564 to your computer and use it in GitHub Desktop.
Save hafizio/2731e6525fb75082a564 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
<button class="btn btn--large">
<a class="btn__title">Hello</a>
<p class="btn__content">Hi there</p>
</button>
// ----
// 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;
}
}
.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;
}
<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