# postcss-russian-stylesheets **Repository Path**: mirrors_Semigradsky/postcss-russian-stylesheets ## Basic Information - **Project Name**: postcss-russian-stylesheets - **Description**: :ru: PostCSS plugin for writing Russian Style Sheets. - **Primary Language**: Unknown - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-09-25 - **Last Updated**: 2026-03-22 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## 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перста; } ```