Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/twbs/bootstrap.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorXhmikosR <xhmikosr@gmail.com>2017-10-07 19:16:49 +0300
committerXhmikosR <xhmikosr@gmail.com>2017-10-09 11:20:05 +0300
commita8fb64f3e3b7c9a8763ea89aea85082b1a073ef6 (patch)
tree9dabf5d12438968f8de664a4da5a2bd38bcbd966 /docs
parentecdaf0e34a177a15e9ec4d81021a61f79adaf7fb (diff)
Lint examples' CSS too.
Diffstat (limited to 'docs')
-rw-r--r--docs/4.0/examples/.stylelintrc12
-rw-r--r--docs/4.0/examples/blog/blog.css18
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 0000000000..44cf7c0e0f
--- /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 6eda0a7b12..0f319ec92c 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;