Skip to content

Latest commit

 

History

History
46 lines (37 loc) · 1.05 KB

README.md

File metadata and controls

46 lines (37 loc) · 1.05 KB

flag 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перста;
}