https://github.com/timche/postcss-german-stylesheets
:de: PostCSS plugin for writing German Style Sheets
https://github.com/timche/postcss-german-stylesheets
Last synced: over 1 year ago
JSON representation
:de: PostCSS plugin for writing German Style Sheets
- Host: GitHub
- URL: https://github.com/timche/postcss-german-stylesheets
- Owner: timche
- License: mit
- Created: 2015-08-22T21:57:11.000Z (almost 11 years ago)
- Default Branch: master
- Last Pushed: 2017-02-08T15:48:05.000Z (over 9 years ago)
- Last Synced: 2024-10-14T18:58:38.593Z (over 1 year ago)
- Language: JavaScript
- Homepage: http://timche.github.io/postcss-german-stylesheets
- Size: 69.3 KB
- Stars: 57
- Watchers: 5
- Forks: 10
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# PostCSS German Style Sheets
[](https://travis-ci.org/timche/postcss-german-stylesheets)
[](https://www.npmjs.com/package/postcss-german-stylesheets)
> [PostCSS](https://github.com/postcss/postcss) plugin for writing German Style Sheets.
Take CSS to the next level and write your CSS in German!
## Installation
```console
$ npm install postcss-german-stylesheets
```
## Usage
```js
// ES5
var germanStyleSheets = require('postcss-german-stylesheets')
// ES6
import germanStyleSheets from 'postcss-german-stylesheets'
```
See [PostCSS#Usage](https://github.com/postcss/postcss#usage) for usage for your environment.
## Example
Using this `input.css`:
```css
.foo {
höhe: 300px;
außenabstand-unten: 10px;
schriftgröße: 20px !wichtig;
hintergrundfarbe: schwarz;
farbe: weiß;
}
```
you will get:
```css
.foo {
height: 300px;
margin-bottom: 10px;
font-size: 20px !important;
background-color: black;
color: white;
}
```
## Documentation
- [Properties](https://github.com/timche/postcss-german-stylesheets/blob/master/docs/Properties.md)
- [Values](https://github.com/timche/postcss-german-stylesheets/blob/master/docs/Values.md)
## Contributing
`postcss-german-stylesheets` has only a subset of CSS and needs your help to add more German properties and values.
## Changelog
See [CHANGELOG.md](https://github.com/timche/postcss-german-stylesheets/blob/master/CHANGELOG.md).
## License
See [LICENSE](https://github.com/timche/postcss-german-stylesheets/blob/master/LICENSE).