Sha256: 6f85aa9d47623ec67fd2f2fa7dcf1e068dd7b4901d211d58c69abf59ccc9815a

Contents?: true

Size: 1.21 KB

Versions: 61

Compression:

Stored size: 1.21 KB

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]

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

61 entries across 61 versions & 4 rubygems

Version Path
cloudhead-less-1.0.0 README.md
cloudhead-less-1.0.1 README.md
cloudhead-less-1.0.10 README.md
cloudhead-less-1.0.13 README.md
cloudhead-less-1.0.16 README.md
cloudhead-less-1.0.2 README.md
cloudhead-less-1.0.3 README.md
cloudhead-less-1.0.4 README.md
cloudhead-less-1.0.5 README.md
cloudhead-less-1.0.6 README.md
cloudhead-less-1.0.8 README.md
cloudhead-less-1.0.9 README.md
cloudhead-less-1.1.0 README.md
cloudhead-less-1.1.1 README.md
cloudhead-less-1.1.10 README.md
cloudhead-less-1.1.11 README.md
cloudhead-less-1.1.12 README.md
cloudhead-less-1.1.13 README.md
cloudhead-less-1.1.2 README.md
cloudhead-less-1.1.3 README.md