1.0.1 • Published 9 years ago

postcss-russian-stylesheets v1.0.1

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

PostCSS Russian Stylesheets Build Status

PostCSS plugin for writing Russian Style Sheets.

Based on 1css.

Input

.some-class {
  высота: 20пикселей;
  отображение: блочное;
  цвет: черный;
  цвет-фона: желтый;
}

Output

.some-class {
  height: 20px;
  display: block;
  color: black;
  background-color: yellow;
}

Usage

postcss([ require('postcss-russian-stylesheets') ])

See PostCSS docs for examples for your environment.

See also postcss-russian-units:

.some-class {
  высота: 10ногтей;
  ширина: 4перста;
}