Sass SASS Mixins with Default Parameters Using Maps Creating mixins with default parameters is very easy in SASS using maps. Let's say we have a mixin called button size that takes a configuration map called $in: @mixin button-size($in) {} And let's
CSS CSS Rant My Rant on Writing CSS for large scale applications A note on descendent selectors: You should not totally avoid them. It would be a little bit impractical if you didn't use them. BUT,
Less Making font sizes based on fibonacci sequence with LESS Even though it is not the best idea to use a lot of JavaScript in LESS, it come in handy when you need to define something more involved. The snippet below allows you