18 lines
264 B
Plaintext
18 lines
264 B
Plaintext
.nested-ruleset (@width: 200px) {
|
|
width: @width;
|
|
.column {
|
|
margin: @width;
|
|
&.blue {
|
|
color: blue;
|
|
.deep {
|
|
padding: @width;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
.content {
|
|
.nested-ruleset(600px);
|
|
}
|
|
.content-em {
|
|
.nested-ruleset();
|
|
} |