=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/mandoc/mandoc.css,v retrieving revision 1.37 retrieving revision 1.38 diff -c -r1.37 -r1.38 *** src/usr.bin/mandoc/mandoc.css 2022/07/03 14:28:27 1.37 --- src/usr.bin/mandoc/mandoc.css 2022/07/05 21:25:24 1.38 *************** *** 1,4 **** ! /* $OpenBSD: mandoc.css,v 1.37 2022/07/03 14:28:27 schwarze Exp $ */ /* * Standard style sheet for mandoc(1) -Thtml and man.cgi(8). * --- 1,4 ---- ! /* $OpenBSD: mandoc.css,v 1.38 2022/07/05 21:25:24 schwarze Exp $ */ /* * Standard style sheet for mandoc(1) -Thtml and man.cgi(8). * *************** *** 53,71 **** /* Header and footer lines. */ ! table.head { width: 100%; border-bottom: 1px dotted #808080; margin-bottom: 1em; font-size: smaller; } ! td.head-vol { text-align: center; } ! td.head-rtitle { text-align: right; } ! table.foot { width: 100%; border-top: 1px dotted #808080; margin-top: 1em; font-size: smaller; } ! td.foot-os { text-align: right; } /* Sections and paragraphs. */ --- 53,80 ---- /* Header and footer lines. */ ! div[role=doc-pageheader] { ! display: flex; border-bottom: 1px dotted #808080; margin-bottom: 1em; font-size: smaller; } ! .head-ltitle { flex: 1; } ! .head-vol { flex: 0 1 auto; ! text-align: center; } ! .head-rtitle { flex: 1; text-align: right; } ! div[role=doc-pagefooter] { ! display: flex; ! justify-content: space-between; border-top: 1px dotted #808080; margin-top: 1em; font-size: smaller; } ! .foot-left { flex: 1; } ! .foot-date { flex: 0 1 auto; ! text-align: center; } ! .foot-os { flex: 1; ! text-align: right; } /* Sections and paragraphs. */