Created
August 3, 2015 12:52
-
-
Save czajkovsky/6f2752c0d951c8b93cda 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
.box | |
.child.child--top | |
.child.child--middle | |
.child.child--bottom |
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.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; } | |
} |
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
.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; | |
} |
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
<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