Skip to content

Instantly share code, notes, and snippets.

@czajkovsky
Created August 3, 2015 12:52
Show Gist options
  • Save czajkovsky/6f2752c0d951c8b93cda to your computer and use it in GitHub Desktop.
Save czajkovsky/6f2752c0d951c8b93cda to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
.box
.child.child--top
.child.child--middle
.child.child--bottom
// ----
// Sass (v3.4.14)
// Compass (v1.0.3)
// ----
.box {
width: 130px;
padding: 15px;
background: #3498db;
}
.child {
width: 100px;
height: 100px;
margin: 15px;
&--top { background: #34495e; }
&--middle { background: inherit; }
&--bottom { background: #8e44ad; }
}
.box {
width: 130px;
padding: 15px;
background: #3498db;
}
.child {
width: 100px;
height: 100px;
margin: 15px;
}
.child--top {
background: #34495e;
}
.child--middle {
background: inherit;
}
.child--bottom {
background: #8e44ad;
}
<div class='box'>
<div class='child child--top'></div>
<div class='child child--middle'></div>
<div class='child child--bottom'></div>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment