CssFunctions - JeremS/cljss-core GitHub Wiki
cljss provides css functions as clojure functions, their parameters themself compiled folowing the compilations rules of where the function is used in a rule:
(css [:div :transform #{(rotate :7deg)
(translate :12px, :50%)}])
generates:
div {
transform: rotate(7deg), translate(12px, 50%);
}