aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorGravatar Jingwen Chen <jingwen@google.com>2018-02-15 16:24:21 -0800
committerGravatar Copybara-Service <copybara-piper@google.com>2018-02-15 16:25:55 -0800
commitc7a56bc320211d638fec528f82a3ffb060303a6c (patch)
tree3261f3aebf984c8199e3fd27b714c641f8706cf3
parent9f0ca0a477e5b3d136878078f4ee1f25de1666aa (diff)
Increase font-weight for h1-h6 elements in docs for better contrast
See also https://github.com/bazelbuild/bazel-website/pull/97 The header elements are too thin, and difficult for the eyes to identify the start of a new section. Before: ![image](https://user-images.githubusercontent.com/347918/36271696-64e594d2-124d-11e8-8c72-8642f9272b39.png) After: ![image](https://user-images.githubusercontent.com/347918/36271689-5b5e4576-124d-11e8-8db7-6b22b3da872f.png) Closes #4641. PiperOrigin-RevId: 185920934
-rw-r--r--site/_sass/style.scss2
1 files changed, 1 insertions, 1 deletions
diff --git a/site/_sass/style.scss b/site/_sass/style.scss
index 0f4db2ca41..9784b7e420 100644
--- a/site/_sass/style.scss
+++ b/site/_sass/style.scss
@@ -48,7 +48,7 @@ h4,
h5,
h6 {
color: $text-color;
- font-weight: 300;
+ font-weight: 400;
margin-top: 30px;
margin-bottom: 15px;
}