diff options
author | Laurent Pinchart <laurent.pinchart@ideasonboard.com> | 2019-10-19 06:05:49 +0300 |
---|---|---|
committer | Laurent Pinchart <laurent.pinchart@ideasonboard.com> | 2019-10-23 17:41:09 +0300 |
commit | 09d7d00a0fbed8d2a944509e712242bab016a4ba (patch) | |
tree | 216497ce6653f4c811e4c151d31f76f304cf3a8c | |
parent | cf596d8dfa7a41b7d5979cc832bec6f9c8322bd8 (diff) |
Documentation: theme: css: Make text darker
The text is currently rendered as a 50% gray, which is a bit painful to
read in low light conditions. Make it darker.
Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Reviewed-by: Kieran Bingham <kieran.bingham@ideasonboard.com>
-rw-r--r-- | Documentation/theme/static/css/theme.css | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/Documentation/theme/static/css/theme.css b/Documentation/theme/static/css/theme.css index 4901bbf5..60f3510d 100644 --- a/Documentation/theme/static/css/theme.css +++ b/Documentation/theme/static/css/theme.css @@ -6,7 +6,7 @@ html { } body { - color: rgb(0, 0, 0, 0.5); + color: rgb(0, 0, 0, 0.65); font-family: Arial, sans-serif; margin: 0px; } @@ -217,7 +217,6 @@ div#content > div.block { } div#content > div.block h1 { - color: black; font-size: 40px; margin-top: 0px; text-align: left; |