mirror of
https://github.com/rembo10/headphones.git
synced 2026-01-12 15:58:30 -05:00
About less and css
The main message of this document: DO NOT MODIFY style.css - IT IS GENERATED FILE
If you want modify the appearance of Headphones, please, follow this simple steps.
- Install. Do this just once, and if you still do not have
lesscutility on your PC. Here is very useful guide, how to install less : http://lesscss.org/#using-less-installation - Modify. Carefully add your changes to the
style.less(.lessextension, not.css). - Compile. Currently, there is no magic, so you should compile css manually. Go to the
/data/interfaces/default/cssfolder (or use full paths..), and then just type:
lessc style.less > style.css
works good on *nix hosts, I didn't test this on win-hosts
DONE. You have new CSS file.
LESS
Less is very useful tool (CSS pre-processor) for CSS writing. There is the awesome guide on the official site: Official Less Guide
Thanks!