Sha256: ffaf3a2c8bc128a3a201da82121984e7e0488c50908f5c65dbcec94badd11247

Contents?: true

Size: 621 Bytes

Versions: 2

Compression:

Stored size: 621 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

Version data entries

2 entries across 2 versions & 2 rubygems

Version Path
cloudhead-less-0.8.6 README.md
less-0.8.7 README.md