summaryrefslogtreecommitdiffstats
path: root/Documentation/sphinx-static/custom.css
diff options
context:
space:
mode:
authorJonathan Corbet <corbet@lwn.net>2022-09-26 17:48:59 -0600
committerJonathan Corbet <corbet@lwn.net>2022-10-13 11:14:31 -0600
commit2056b920c615566084cd9aa105b54b62a516161e (patch)
treeaacc0e3e98a7a3dbef2a03ca12257e67f6261cb5 /Documentation/sphinx-static/custom.css
parentd5389d3145ef0e47463f620835131557c99a331d (diff)
downloadlinux-2056b920c615566084cd9aa105b54b62a516161e.tar.gz
linux-2056b920c615566084cd9aa105b54b62a516161e.tar.bz2
linux-2056b920c615566084cd9aa105b54b62a516161e.zip
docs: tweak some Alabaster style parameters
This is just the beginning: tighten up the layout a bit to improve the information density in the browser. Also reconfigure the page width in terms of character units (em) rather than pixels, making it more display-independent. To that end, add a custom.css file to tweak Alabaster CSS settings. Acked-by: Mauro Carvalho Chehab <mchehab@kernel.org> Signed-off-by: Jonathan Corbet <corbet@lwn.net>
Diffstat (limited to 'Documentation/sphinx-static/custom.css')
-rw-r--r--Documentation/sphinx-static/custom.css14
1 files changed, 14 insertions, 0 deletions
diff --git a/Documentation/sphinx-static/custom.css b/Documentation/sphinx-static/custom.css
new file mode 100644
index 000000000000..6b0e554cea0a
--- /dev/null
+++ b/Documentation/sphinx-static/custom.css
@@ -0,0 +1,14 @@
+/* SPDX-License-Identifier: GPL-2.0 */
+/*
+ * CSS tweaks for the Alabaster theme
+ */
+
+/* Shrink the headers a bit */
+div.body h1 { font-size: 180%; }
+div.body h2 { font-size: 150%; }
+div.body h3 { font-size: 130%; }
+
+/* Tighten up the layout slightly */
+div.body { padding: 0 15px 0 10px; }
+div.document { margin: 20px 10px 0 10px; }
+div.sphinxsidebarwrapper { padding: 1em 0.4em; }