GrooCSS 0.7 Released
GrooCSS 0.7 has been available for a few days. A few bug fixes in both the core and the gradle-plugin have been included in 0.7.2. New in this release:
Better pseudo-class support with %
Measurements are now fully supported including math between different compatible types.
Added Gradle Plugin
Some measurement values are validated (for example, passing 10.deg to maxWidth will throw an AssertionError).
Pseudo-classes example:
input % hover { color blue } li % nthChild('3n') { color blue }
Produces:
input:hover { color: Blue; } li:nth-child(3n) { color: Blue; }
The main website has also been moved to github hosting! Check it out: http://www.groocss.org/
See the main site for instructions on how to use the Gradle plugin.











