mhulse / rex

On, Wildfire, on!
http://mhulse.github.io/rex/demo/
Apache License 2.0
4 stars 0 forks source link

Add scss flags for all optional CSS. #88

Closed mhulse closed 11 years ago

mhulse commented 11 years ago

Example:

@if $flag_natural-box-model == true {

    *,
    *:before,
    *:after {
        -webkit-box-sizing: border-box;
           -moz-box-sizing: border-box;
                box-sizing: border-box;
    }

}

Use above for things like drop caps or table scroller.

mhulse commented 11 years ago

Completed. See README.md (or look at variables.css) for flag names and descriptions.