TurbineCSS / Turbine

A collection of PHP-powered tools that are designed to decrease css development time and web developer headache.
http://turbinecss.github.io
GNU Lesser General Public License v3.0
140 stars 19 forks source link

Turbine

Turbine logo

Online documentation

Turbine is a collection of PHP-powered tools that are designed to decrease css development time and web developer headache. This includes:

Example

Turbine takes this...

#foo
    color:red
    div.foo, div.bar
        margin, padding:4px
        border-radius:4px

and turns it into:

#foo {
    color: red;
}
#foo div.foo, #foo div.bar {
    margin: 4px;
    padding: 4px;
    -moz-border-radius: 4px;
    -khtml-border-radius: 4px;
    -webkit-border-radius: 4px;
    border-radius: 4px;
}

It is somewhat compareable to Sass and Scaffold, but more radically geared towards getting as much done as possible in as few keystrokes as possible.

We need your help!

Turbine is still in active development. Help us to make it better!