Created
July 7, 2015 00:27
-
-
Save iamalfonse/9433362b289c7ff7dd31 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
<div class="projectinfo black-bg"> | |
<h1>Testing</h1> | |
<div class="child-element"> | |
<p>This is the content for the child element</p> | |
</div> | |
</div> |
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
// ---- | |
// libsass (v3.2.5) | |
// ---- | |
.projectinfo, | |
.profileinfo { | |
color: #999; | |
&.black-bg { | |
background: #333; | |
h1 { | |
color: red; | |
} | |
} | |
.child-element { | |
color: #fff; | |
background: rgba(95,162,219,0.5); | |
} | |
} |
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
.projectinfo, | |
.profileinfo { | |
color: #999; | |
} | |
.projectinfo.black-bg, | |
.profileinfo.black-bg { | |
background: #333; | |
} | |
.projectinfo.black-bg h1, | |
.profileinfo.black-bg h1 { | |
color: red; | |
} | |
.projectinfo .child-element, | |
.profileinfo .child-element { | |
color: #fff; | |
background: rgba(95, 162, 219, 0.5); | |
} |
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="projectinfo black-bg"> | |
<h1>Testing</h1> | |
<div class="child-element"> | |
<p>This is the content for the child element</p> | |
</div> | |
</div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment