Files
headphones/data/interfaces/default/css/README.md
2016-03-13 02:11:37 +05:00

1013 B

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.

  1. Install. Do this just once, and if you still do not have lessc utility on your PC. Here is very useful guide, how to install less : http://lesscss.org/#using-less-installation
  2. Modify. Carefully add your changes to the style.less (.less extension, not .css).
  3. Compile. Currently, there is no magic, so you should compile css manually. Go to the /data/interfaces/default/css folder (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!