Liking cljdoc? Tell your friends :D

day8.re-frame-10x.inlined-deps.garden.v1v3v9.garden.stylesheet

Utility functions for CSS properties, directives and functions.

Utility functions for CSS properties, directives and functions.
raw docstring

at-font-faceclj/s

(at-font-face & font-properties)

Create a CSS @font-face rule.

Create a CSS @font-face rule.
sourceraw docstring

at-importclj/s

(at-import url)
(at-import url & media-queries)

Create a CSS @import rule.

Create a CSS @import rule.
sourceraw docstring

at-keyframesclj/s

(at-keyframes identifier & frames)

Create a CSS @keyframes rule.

Create a CSS @keyframes rule.
sourceraw docstring

at-mediaclj/s

(at-media media-queries & rules)

Create a CSS @media rule.

Create a CSS @media rule.
sourceraw docstring

at-supportsclj/s

(at-supports feature-queries & rules)
source

cssfnclj/s

(cssfn fn-name)
source

hslclj/s

(hsl h s l)

Create a color from HSL values.

Create a color from HSL values.
sourceraw docstring

rgbclj/s

(rgb r g b)

Create a color from RGB values.

Create a color from RGB values.
sourceraw docstring

ruleclj/s

(rule selector & more)

Create a rule function for the given selector. The selector argument must be valid selector (ie. a keyword, string, or symbol). Additional arguments may consist of extra selectors or declarations.

The returned function accepts any number of arguments which represent the rule's children.

Ex. (let [text-field (rule "[type="text"])] (text-field {:border ["1px" :solid "black"]})) ;; => ["[type="text"] {:boder ["1px" :solid "black"]}]

Create a rule function for the given selector. The `selector`
argument must be valid selector (ie. a keyword, string, or symbol).
Additional arguments may consist of extra selectors or
declarations.

The returned function accepts any number of arguments which represent
the rule's children.

Ex.
    (let [text-field (rule "[type="text"])]
     (text-field {:border ["1px" :solid "black"]}))
    ;; => ["[type="text"] {:boder ["1px" :solid "black"]}]
sourceraw docstring

cljdoc is a website building & hosting documentation for Clojure/Script libraries

× close