// Добавьте к примесям условия применения
.rotate(@angle) { transform: rotate(@angle); } .rotate(@angle) when (@angle =< 100deg){ /*добавил*/ transform: rotate(0deg); } .paint(@color) when (@color = @fuchsia) { /*изменил*/ background-color: @color; } .resize(@size) { width: @size; height: @size; } .resize(@size) when (@size > 140px){ /*добавил*/ width: 130px; height: 130px; }