Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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.
- Host: GitHub
- URL: https://github.com/semigradsky/postcss-russian-stylesheets
- Owner: Semigradsky
- License: mit
- Created: 2015-09-13T20:27:08.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2016-09-09T21:34:49.000Z (about 8 years ago)
- Last Synced: 2024-10-30T03:58:28.838Z (9 days ago)
- Language: JavaScript
- Homepage: https://www.npmjs.com/package/postcss-russian-stylesheets
- Size: 12.7 KB
- Stars: 66
- Watchers: 3
- Forks: 2
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
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перста;
}
```