
README
======

Download
--------

http://anongit.freedesktop.org/git/ccss.git/
git+ssh://<user>@git.freedesktop.org/git/ccss


(0) Supported CSS Subset
------------------------

* Descendant selectors, e.g. `GtkComboBox GtkButton { ... }`.
* Child selectors, e.g. `GtkBox > GtkButton { ... }`.
* Class selectors, e.g. `hline.handlebox { ... }`.
  The class-part is mapped to gtk'd detail string.
* ID selectors, e.g. `GtkButton#foo { ... }`.
  The ID-part is mapped to the widget's name.
* Universal selector, e.g. `* { ... }`.
* Sequences of selectors, e.g. `GtkNotebook, GtkFrame { ... }`.


### (0.1) Supported CSS Properties ###

The following properties are at least partially supported.

* background
* background-color
* background-image
* background-attachment
* background-position
* background-repeat
* background-size
* border
* border-color
* border-style
* border-width
* border-bottom
* border-left
* border-right
* border-top
* border-radius
* border-top-left-radius
* border-top-right-radius
* border-bottom-right-radius
* border-bottom-left-radius
* color

