https://github.com/ku1ik/css2less
Css to LessCss converter
https://github.com/ku1ik/css2less
Last synced: 3 months ago
JSON representation
Css to LessCss converter
- Host: GitHub
- URL: https://github.com/ku1ik/css2less
- Owner: ku1ik
- Created: 2009-07-02T21:05:42.000Z (almost 16 years ago)
- Default Branch: master
- Last Pushed: 2012-04-27T22:00:28.000Z (about 13 years ago)
- Last Synced: 2024-10-13T13:34:34.933Z (8 months ago)
- Language: Ruby
- Homepage: http://ku1ik.com
- Size: 99.6 KB
- Stars: 62
- Watchers: 5
- Forks: 73
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# css2less
Turns this
#foo {
color: red;
}
#foo a {
color: blue;
}Into this
#foo {
color: red;
a {
color: blue;
}
}
## Installationsudo wget https://raw.github.com/sickill/css2less/master/css2less.rb -O /usr/local/bin/css2less
sudo chmod a+x /usr/local/bin/css2less## Usage
css2less style.css > style.less
## License
MIT
## Author
Marcin Kulik