Sha256: cdb553bbfc38da0e4bb839714b3ffcc4d16ee6731c2bfa7e0c8af6b20b28a657
Contents?: true
Size: 672 Bytes
Versions: 11
Compression:
Stored size: 672 Bytes
Contents
LESS ==== It's time CSS was done right – LESS is _leaner_ css. Explained --------- LESS allows you to write CSS the way (I think) it was meant to, that is: with *variables*, *nested rules* and *mixins*! ### Here's some example LESS code: @dark: #110011; .outline { border: 1px solid black } .article { a { text-decoration: none } p { color: @dark } .outline; } ### And the CSS output it produces: .outline { border: 1px solid black } .article a { text-decoration: none } .article p { color: #110011 } .article { border: 1px solid black } If you have CSS nightmares, just $ lessc style.less For more information, see you at http://lesscss.org
Version data entries
11 entries across 11 versions & 3 rubygems