hcss is a CSS compiler that that allows you to use HTML element hierarchy to define CSS rules
Project description
hcss is a CSS compiler that that allows you to use HTML element hierarchy to define CSS rules. Requires Python 2.2+. BSD-licensed.
Input
<div id="parent"> margin: 10px; <div class="child"> margin: 5px; border: 1px solid #000; </div> </div>
Output
div#parent { margin: 10px; } div#parent > div.child { margin: 5px; border: 1px solid #000; }
Setup
$ pip install hcss # or $ easy_install hcss
Links
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
hcss-0.3.1.tar.gz
(6.8 kB
view hashes)