31 lines
345 B
Plaintext
31 lines
345 B
Plaintext
.nested-ruleset (@width: 200px) {
|
|
width: @width;
|
|
.column { margin: @width; }
|
|
}
|
|
.content {
|
|
.nested-ruleset(600px);
|
|
}
|
|
|
|
.mix-inner (@var) {
|
|
border-width: @var;
|
|
}
|
|
|
|
.mix (@a: 10) {
|
|
.inner {
|
|
height: @a * 10;
|
|
|
|
.innest {
|
|
width: @a;
|
|
.mix-inner(@a * 2);
|
|
}
|
|
}
|
|
}
|
|
|
|
.class {
|
|
.mix(30);
|
|
}
|
|
|
|
.class2 {
|
|
.mix(60);
|
|
}
|