Skip to content

Instantly share code, notes, and snippets.

@krisbulman
Created February 26, 2014 17:12
Show Gist options
  • Select an option

  • Save krisbulman/9233933 to your computer and use it in GitHub Desktop.

Select an option

Save krisbulman/9233933 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
<table>
<tbody>
<tr class="odd">
<td>test</td>
<td>test</td>
</tr>
<tr class="even">
<td>test</td>
<td>test</td>
</tr>
<tr class="odd">
<td>test</td>
<td>test</td>
</tr>
</tbody>
</table>
// ----
// Sass (v3.3.0.rc.5)
// Compass (v1.0.0.alpha.18)
// ----
.speech-bubble{
color: purple;
@at-root &__header{
color: orange;
}
@at-root &__text{
color: black;
@at-root &--link{
color: green;
}
}
}
.speech-bubble {
color: purple;
}
.speech-bubble__header {
color: orange;
}
.speech-bubble__text {
color: black;
}
.speech-bubble__text--link {
color: green;
}
<table>
<tbody>
<tr class="odd">
<td>test</td>
<td>test</td>
</tr>
<tr class="even">
<td>test</td>
<td>test</td>
</tr>
<tr class="odd">
<td>test</td>
<td>test</td>
</tr>
</tbody>
</table>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment