Skip to content

Instantly share code, notes, and snippets.

@AGoblinKing
Created March 18, 2015 22:27
Show Gist options
  • Save AGoblinKing/61bf350482871b1f53ea to your computer and use it in GitHub Desktop.
Save AGoblinKing/61bf350482871b1f53ea to your computer and use it in GitHub Desktop.
s(".content", {
color : "blue",
backgroundColor : "purple"
}, [
s(".sub-content", {
border : "2px solid black"
})
]);
=>
.content {
color : blue;
background-color: purple;
}
.content .sub-content {
border: 2px solid black;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment