as AlphaMale suggests there are many css frameworks so i will not list them again But if it may help.
Twitter uses less. look at this bootstrap from twitter built using less http://twitter.github.com/bootstrap/
LESS on Wikipedia
Comparision to Sass
Both Sass and LESS are CSS preprocessors, which allow writing clean CSS in a programming construct instead of static rules.
LESS is inspired by Sass. Sass was designed to both simplify and extend CSS, so things like curly braces were removed from the syntax. LESS was designed to be as close to CSS as possible, so the syntax is identical to existing CSS code. As a result, existing CSS can be used as valid LESS code.
The newer versions of Sass also introduced a CSS-like syntax called SCSS (Sassy CSS).
Comparision to ZUSS
ZUSS is inspired by LESS. The syntax is similar, except it is tailored for Java programming language. Unlike LESS, it doesn't require the JavaScript interpreter (Rhino), and it allows ZUSS to invoke Java methods directly.
Also look at this link https://gist.github.com/674726 for less vs saas syntax comparition