Skip to content

glennsl/bs-css

 
 

Repository files navigation

bs-css

statically typed DSL for writing css in reason.

Bs-css is a statically typed interface to Glamor

Installation

npm install --save bs-css

In your bsconfig.json, include "bs-css" in the bs-dependencies.

Usage

module Theme = {
  open Css;
  let textColor = hex("333");
  let basePadding = px(15);
};

let styles = Css.({
  "card": style([
    backgroundColor(white),
    boxShadow(~y=3, ~blur=5, rgba(0, 0, 0, 0.3)),
    padding(Theme.basePadding)
  ]),
  "title": style([
    fontSize(rem(1.5)),
    color(Theme.textColor),
    marginBottom(Theme.basePadding)
  ])
});

<div className=styles##card>
  <h1 className=styles##title> (ReasonReact.stringToElement("Hello")) </h1>
</div>

Merging css rules

You can merge css rules using merge

let text_primary = style([ color(white) ]);
let small = style([ fontSize(px(10)) ]);


<p className=merge([ text_primary, small ])> ...

bs-css will make sure that rules are merged in the correct order, managing nesting and precedence for you.

Global css

You can defined global css rules with global

Css.(
  global("body", [margin(px(0))])
);

Css.(
  global("h1, h2, h3", [color(rgb(33, 33, 33))])
);

Keyframes

define animation keyframes;

let bounce = Css.keyframes([
  ("0%", [ transform( scale(0.1, 0.1) ),  opacity(0.0) ]),
  ("60%", [ transform( scale(1.2, 1.2) ),  opacity(1.0) ]),
  ("100%", [ transform( scale(1.0,1.0) ), opacity(1.0) ])
]);

let styles = css([
  animationName(bounce),
  animationDuration(2000),
  width(px(50)),
  height(px(50)),
  backgroundColor(rgb(255, 0, 0))
]);

// ...
<div className=styles>
  (ReasonReact.stringToElement("bounce!"))
</div>

Development

npm run start

Where is the documentation?

Its on its way! until then you can check out css.rei.

Thanks

Thanks to glamor which is doing all the heavi lifting. Thanks to bs-glamor which this repo was forked from. Thanks to elm-css for dsl design inspiration.

About

statically typed DSL for writing css in reason.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 97.0%
  • OCaml 3.0%