Skip to content

Instantly share code, notes, and snippets.

@demersdesigns
Created February 4, 2014 16:28
Show Gist options
  • Save demersdesigns/8807117 to your computer and use it in GitHub Desktop.
Save demersdesigns/8807117 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
<div class="speech-bubble">
<h1 class="speech-bubble__header">This should be white</h1>
<p class="speech-bubble__bodyCopy">Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>
</div>
// ----
// Sass (v3.3.0.rc.2)
// Compass (v1.0.0.alpha.17)
// ----
.speech-bubble{
background-color: navajowhite;
padding: 2em;
@at-root #{&}__header{
color: grey;
display: block;
}
@at-root #{&}__bodyCopy{
color: #999;
margin-bottom: 10px;
}
}
.speech-bubble {
background-color: navajowhite;
padding: 2em;
}
.speech-bubble__header {
color: grey;
display: block;
}
.speech-bubble__bodyCopy {
color: #999;
margin-bottom: 10px;
}
<div class="speech-bubble">
<h1 class="speech-bubble__header">This should be white</h1>
<p class="speech-bubble__bodyCopy">Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment