Turbine

Turbine

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 code like this …

// Welcome to Turbine!
@media screen
#foo, #bar
    color:#FF0000
    margin-left, margin-right: 4px
    div.alpha, div.beta
        font-weight:bold
        border-radius:4px

…and turns it into:

@media screen {
    #foo, #bar {
        color: #FF0000;
        margin-left: 4px;
        margin-right: 4px;
    }
    #foo div.alpha, #foo div.beta, #bar div.alpha, #bar div.beta {
        font-weight: bold;
        -moz-border-radius: 4px;
        -webkit-border-radius: 4px;
        -khtml-border-radius: 4px;
        border-radius: 4px;
    }
}

It is somewhat comparable to Sass and the old LessCSS (not the JS-based one, the ruby-gem based), but more radically geared towards getting as much done as possible in as few keystrokes as possible.

We need your help!

Turbine is a stable software, but you can help us making it even better!