Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/tanangular/less-less
https://github.com/tanangular/less-less
Last synced: 3 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/tanangular/less-less
- Owner: tanangular
- Created: 2012-04-26T03:28:18.000Z (over 12 years ago)
- Default Branch: master
- Last Pushed: 2011-09-04T14:12:35.000Z (about 13 years ago)
- Last Synced: 2023-03-22T10:47:01.887Z (over 1 year ago)
- Language: PHP
- Size: 162 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## Process and minify LESS on the fly
*Built to play nice with [Symphony CMS](http://symphony-cms.com/)*
It's so easy..
1. Write with [LESS](http://lesscss.org/)
2. Call like normal *Example:* ``
## Install
Simply download and drop on a web server running PHP.
`report.php` will show a good description, while `index.html` is a functional example.### `report.php` contents
**LESS in**
@base: 30px;
.group {
.entry {
border: solid 1px;
width: @base * 5;
text-align: center;
}
}**CSS out**
.group .entry {
border:solid 1px;
width:150px;
text-align:center;
}**CSS minified**
.group
.entry{border:solid 1px;width:150px;text-align:center}