css: Don't use bold text in titles

It looks like we're shouting. Monospace is more than adequate.

Change-Id: I43d6f4f58e385e189c4f377ba02a6f9294862fe4
Signed-off-by: Stephen Finucane <sfinucan@redhat.com>
Closes-Bug: #1818840
This commit is contained in:
Stephen Finucane 2019-03-06 14:39:04 +00:00 committed by Stephen Finucane
parent e0142fd3f9
commit 15815e0046
1 changed files with 11 additions and 1 deletions

View File

@ -33,7 +33,17 @@ ol.arabic ol ol {
dd { margin-left: 2em; }
div.docs-body code.literal {
div.docs-body h1 code.literal,
div.docs-body h2 code.literal,
div.docs-body h3 code.literal,
div.docs-body h4 code.literal,
div.docs-body h5 code.literal,
div.docs-body h6 code.literal {
color: inherit;
font-weight: inherit;
}
div.docs-body p code.literal {
color: #000;
}