Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/semigradsky/postcss-russian-stylesheets

:ru: PostCSS plugin for writing Russian Style Sheets.
https://github.com/semigradsky/postcss-russian-stylesheets

Last synced: 5 days ago
JSON representation

:ru: PostCSS plugin for writing Russian Style Sheets.

Awesome Lists containing this project

README

        

flag PostCSS Russian Stylesheets [![Build Status][ci-img]][ci]
===

[PostCSS] plugin for writing Russian Style Sheets.

Based on [1css](https://github.com/azproduction/1css).

[PostCSS]: https://github.com/postcss/postcss
[ci-img]: https://travis-ci.org/Semigradsky/postcss-russian-stylesheets.svg
[ci]: https://travis-ci.org/Semigradsky/postcss-russian-stylesheets

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

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

## Usage
```js
postcss([ require('postcss-russian-stylesheets') ])
```

See [PostCSS] docs for examples for your environment.

See also [postcss-russian-units](https://github.com/Semigradsky/postcss-russian-units):
```css
.some-class {
высота: 10ногтей;
ширина: 4перста;
}
```