This is an automated email from the git hooks/post-receive script.
civodul pushed a commit to branch master
in repository guix-artwork.
The following commit(s) were added to refs/heads/master by this push:
new 65d01c9 website: Typeset unnumbered sections like other sections.
65d01c9 is described below
commit 65d01c958f9bd4a8168008bca22978df322feb94
Author: Ludovic Courtès <[email protected]>
AuthorDate: Mon Jun 3 14:02:05 2024 +0200
website: Typeset unnumbered sections like other sections.
* website/themes/initial/css/manual.css (div.unnumberedsec)
(div.unnumberedsubsec): New rules.
---
website/themes/initial/css/manual.css | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/website/themes/initial/css/manual.css
b/website/themes/initial/css/manual.css
index 0360418..e485fd1 100644
--- a/website/themes/initial/css/manual.css
+++ b/website/themes/initial/css/manual.css
@@ -351,7 +351,8 @@ h1.settitle, h1.top, h2.chapter, h3.section, h4.subsection,
h4.subsubsection, h4
/* Use a serif font for section bodies (this overrides /gnulib/manual.css,
which currently applies to entire section classes, as opposed to section
classes for headings only). */
-div.settitle, div.top, div.chapter, div.section, div.subsection,
div.subsubsection {
+div.settitle, div.top, div.chapter, div.section, div.subsection,
div.subsubsection,
+div.unnumberedsec, div.unnumberedsubsec {
font-family: Linux Libertine O, serif;
font-size: 18px;
}