Created by: mikea
Extracting necessary column CSS from regexp matching rule to a mixin. This allows specifying columns completely in less rules without introducing layout into markup.
Example:
<span class="text1">text</span>
<span class="text2">text</span>
.text1 {
.makeColumn(2);
}
.text2 {
.makeColumn(3);
}