0.0.4 • Published 9 years ago

@nathanfaucett/css v0.0.4

Weekly downloads
1
License
MIT
Repository
github
Last release
9 years ago

css Build Status

css helpers functions

var css = require("@nathanfaucett/css");

var style = {
    background: "#ffffff"
};

css.alignContent(style, "left");
css.transition(
    style,
    "background 200ms "+ css.easing.inOut +" 0ms",
    "opacity 100ms "+ css.easing.out +" 0ms",
    "width 100ms "+ css.easing["in"] +" 0ms"
);
css.textShadow(style, "0 0 2px #000", "0 2px 2px #000");