npm.io
1.0.5 • Published 10 years ago

cassis

Licence
ISC
Version
1.0.5
Deps
1
Vulns
0
Weekly
0

cassis

Write CSS in JS.

Install

npm install cassis

Usage

Create from object

import { Stylesheet } from 'cassis';

const css = new Stylesheet();


console.log(css.toString());
html {
  font-size: 100%;
}
@media (max-device-width : 600px) {
  body {
    font-size: 32px;
  }
}