Sha256: 7d66fe50b1c58e4797dccf8f817e3bfa5cefebc81430783c450297f6440b5be7

Contents?: true

Size: 1.36 KB

Versions: 6

Compression:

Stored size: 1.36 KB

Contents

LESS
====
It's time CSS was done right – LESS is _leaner_ css.

Setup
------
to get the latest development version:
    
    sudo gem install less -s http://gemcutter.org

to get the latest stable version:

    sudo gem install less

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 (@width: 1) { border: (@width * 10px) solid black }
	
	.article {
		a { text-decoration: none }
		p { color: @dark }
		.outline(3);
	}
	
### And the CSS output it produces:
	
	.article a { text-decoration: none }
	.article p { color: #110011 }
	.article { border: 30px solid black }
	
If you have CSS nightmares, just
	$ lessc style.less

For more information, see you at <http://lesscss.org>

People without whom this wouldn't have happened a.k.a *Credits*
---------------------------------------------------------------

- **Dmitry Fadeyev**, for pushing me to do this, and designing our awesome website
- **August Lilleaas**, for initiating the work on the treetop grammar, as well as writing the rails plugin
- **Nathan Sobo**, for creating treetop
- **Jason Garber**, for his magical performance optimizations on treetop
- And finally, the people of #ruby-lang for answering all my ruby questions. **apeiros**, **manveru** and **rue** come to mind

Version data entries

6 entries across 6 versions & 3 rubygems

Version Path
lesslateral-1.2.21 README.md
less-1.2.21 README.md
less-1.2.20 README.md
unboxed-less-1.2.19 README.md
less-1.2.19 README.md
less-1.2.18 README.md