1.0.0 • Published 6 years ago

biscotti-css v1.0.0

Weekly downloads
3
License
MIT
Repository
github
Last release
6 years ago

Biscotti CSS

CoffeeScript virtual CSS templates.

# add a helper
rhythm = (lineHeight, fontSize) -> [
  p "font-size", scale lineHeight, fontSize
  p "line-height", lineHeight
]

$$ s "article", [

  # nested styles using &
  s "& > h1", [

    # built-in unit helpers
    rhythm (rem 4), (pct 90)
  ]

  s "& > p", [
    p "font-face", "Montserrat"
  ]
]

Install

npm i -s biscotti-css

Usage

import processor from "biscotti-css"
render = do processor
render path: "./vcss/index.vcss"
1.0.0

6 years ago