UNPKG

cheatsheet

Version:

Cheatsheet boilerplate. Created for the new lesscss.org website, based on Shopify Cheat Sheet by Mark Dunkley.

23 lines (18 loc) 220 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); }