diff options
| author | XhmikosR <[email protected]> | 2017-10-07 19:16:49 +0300 |
|---|---|---|
| committer | XhmikosR <[email protected]> | 2017-10-09 11:20:05 +0300 |
| commit | a8fb64f3e3b7c9a8763ea89aea85082b1a073ef6 (patch) | |
| tree | 9dabf5d12438968f8de664a4da5a2bd38bcbd966 /docs | |
| parent | ecdaf0e34a177a15e9ec4d81021a61f79adaf7fb (diff) | |
| download | bootstrap-a8fb64f3e3b7c9a8763ea89aea85082b1a073ef6.tar.xz bootstrap-a8fb64f3e3b7c9a8763ea89aea85082b1a073ef6.zip | |
Lint examples' CSS too.
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/4.0/examples/.stylelintrc | 12 | ||||
| -rw-r--r-- | docs/4.0/examples/blog/blog.css | 18 |
2 files changed, 24 insertions, 6 deletions
diff --git a/docs/4.0/examples/.stylelintrc b/docs/4.0/examples/.stylelintrc new file mode 100644 index 000000000..44cf7c0e0 --- /dev/null +++ b/docs/4.0/examples/.stylelintrc @@ -0,0 +1,12 @@ +{ + "extends": "../../../build/.stylelintrc", + "rules": { + "at-rule-no-vendor-prefix": null, + "comment-empty-line-before": null, + "media-feature-name-no-vendor-prefix": null, + "property-no-vendor-prefix": null, + "selector-no-qualifying-type": null, + "selector-no-vendor-prefix": null, + "value-no-vendor-prefix": null + } +} diff --git a/docs/4.0/examples/blog/blog.css b/docs/4.0/examples/blog/blog.css index 6eda0a7b1..0f319ec92 100644 --- a/docs/4.0/examples/blog/blog.css +++ b/docs/4.0/examples/blog/blog.css @@ -13,12 +13,18 @@ body { color: #555; } -h1, .h1, -h2, .h2, -h3, .h3, -h4, .h4, -h5, .h5, -h6, .h6 { +h1, +.h1, +h2, +.h2, +h3, +.h3, +h4, +.h4, +h5, +.h5, +h6, +.h6 { font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; font-weight: 400; color: #333; |
