<div>
<style>
${serializeCss({
".ex4-button": {
backgroundColor: "white",
color: "blue",
// *Note:* selectors are separated by ","
"&.ex4-big, &.ex4-huge": {
fontWeight: "strong"
},
"&.ex4-big": {
fontSize: "1.2em"
},
"&.ex4-huge": {
fontSize: "1.4em"
}
}
})}
</style>
<button class="ex4-button">Simple Button</button>
<button class="ex4-button ex4-big">Big Button</button>
<button class="ex4-button ex4-huge">Huge Button</button>
</div>