You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

22 lines
219 B

.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);
}