- commit
- 7ca0a54245f3429258195f7395fa3b3de3bae979
- parent
- bd21c56d941c2410962128c484e752717faceab9
- Author
- Tobias Bengfort <tobias.bengfort@posteo.de>
- Date
- 2017-12-22 14:23
try to get syntax highlighting on github
Diffstat
| M | README.md | 24 | +++++++++++++----------- |
1 files changed, 13 insertions, 11 deletions
diff --git a/README.md b/README.md
@@ -32,17 +32,19 @@ details. 32 32 33 33 Import it in your Sass files: 34 3435 -1 @import "node_modules/sass-planifolia/sass/math";36 -1 @import "node_modules/sass-planifolia/sass/contrast";37 -1 @import "node_modules/sass-planifolia/sass/color";38 -139 -1 .test {40 -1 background-color: red;41 -1 color: contrast-color(red);42 -1 border-color: contrast-stretch(red, orange);43 -1 box-shadow: 0 0 1em pf-shade(red, 0.5, 'lab');44 -1 font-size: 16px * pow(2.3, 1.5);45 -1 }-1 35 ```sass -1 36 @import "node_modules/sass-planifolia/sass/math"; -1 37 @import "node_modules/sass-planifolia/sass/contrast"; -1 38 @import "node_modules/sass-planifolia/sass/color"; -1 39 -1 40 .test { -1 41 background-color: red; -1 42 color: contrast-color(red); -1 43 border-color: contrast-stretch(red, orange); -1 44 box-shadow: 0 0 1em pf-shade(red, 0.5, 'lab'); -1 45 font-size: 16px * pow(2.3, 1.5); -1 46 } -1 47 ``` 46 48 47 49 # What is not included? 48 50