Skip to content

timche/postcss-german-stylesheets

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

79 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

PostCSS German Style Sheets

travis npm

PostCSS plugin for writing German Style Sheets.

Take CSS to the next level and write your CSS in German!

Installation

$ npm install postcss-german-stylesheets

Usage

// ES5
var germanStyleSheets = require('postcss-german-stylesheets')

// ES6
import germanStyleSheets from 'postcss-german-stylesheets'

See PostCSS#Usage for usage for your environment.

Example

Using this input.css:

.foo {
    höhe: 300px;
    außenabstand-unten: 10px;
    schriftgröße: 20px !wichtig;
    hintergrundfarbe: schwarz;
    farbe: weiß;
}

you will get:

.foo {
    height: 300px;
    margin-bottom: 10px;
    font-size: 20px !important;
    background-color: black;
    color: white;
}

Documentation

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.

License

See LICENSE.