xxxxxxxxxx
1
18
/* Here's some simple examples to get you started! */
/* Selector Scoping */
.fooga { color: red; }
/* Selector composition */
.booga {
composes: fooga;
background: blue;
}
/* Values */
@value fgColor: green;
.wooga {
color: fgColor;
}
x
35
/* == MODULAR-CSS OUTPUT == */
/* main.mcss */
/* Here's some simple examples to get you started! */
/* Selector Scoping */
.mc1e7c016f_fooga { color: red; }
/* Selector composition */
.mc1e7c016f_booga {
background: blue;
}
/* Values */
.mc1e7c016f_wooga {
color: green;
}
/* == CLASS COMPOSITIONS == */
/**
{
"main.mcss": {
"fooga": [
"mc1e7c016f_fooga"
],
"booga": [
"mc1e7c016f_fooga",
"mc1e7c016f_booga"
],
"wooga": [
"mc1e7c016f_wooga"
]
}
}
**/
false