From: Donald Hunter Date: Tue, 12 Dec 2023 21:31:37 +0000 (+0000) Subject: docs: Change

style to use smaller font size than

X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=99aa6117a34eef02c135a7199c709541d4445677;p=linux.git docs: Change

style to use smaller font size than

The docs currently have

and

set to the same font size which makes headings hard to distinguish.

to

already have entries in sphinx-static/custom.css to shrink their size a bit from the alabaster theme. Add

to custom.css and set it to be smaller than

. Signed-off-by: Donald Hunter Signed-off-by: Jonathan Corbet Link: https://lore.kernel.org/r/20231212213137.98453-1-donald.hunter@gmail.com --- diff --git a/Documentation/sphinx-static/custom.css b/Documentation/sphinx-static/custom.css index c992b1946edcc..a88ef12428fa5 100644 --- a/Documentation/sphinx-static/custom.css +++ b/Documentation/sphinx-static/custom.css @@ -7,6 +7,7 @@ div.body h1 { font-size: 180%; } div.body h2 { font-size: 150%; } div.body h3 { font-size: 130%; } +div.body h4 { font-size: 110%; } /* toctree captions are styled like h2 */ div.toctree-wrapper p.caption[role=heading] { font-size: 150%; }