From fa7f5670a62d7982cd7fa942da8b8717bb3e14b6 Mon Sep 17 00:00:00 2001 From: Ingo Schwarze Date: Wed, 10 Dec 2014 22:19:45 +0000 Subject: correctly align document header and footer; suggested by kristaps@ --- example.style.css | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/example.style.css b/example.style.css index 10a58308..910eab95 100644 --- a/example.style.css +++ b/example.style.css @@ -20,11 +20,14 @@ div.mandoc div.subsection { } /* Sub-sections (Ss, SS). */ div.mandoc table.synopsis { } /* SYNOPSIS section table. */ div.mandoc table.foot { } /* Document footer. */ div.mandoc td.foot-date { width: 50%; } /* Document footer: date. */ -div.mandoc td.foot-os { width: 50%; } /* Document footer: OS/source. */ +div.mandoc td.foot-os { width: 50%; + text-align: right; } /* Document footer: OS/source. */ div.mandoc table.head { } /* Document header. */ div.mandoc td.head-ltitle { width: 10%; } /* Document header: left-title. */ -div.mandoc td.head-vol { width: 80%; } /* Document header: volume. */ -div.mandoc td.head-rtitle { width: 10%; } /* Document header: right-title. */ +div.mandoc td.head-vol { width: 80%; + text-align: center; } /* Document header: volume. */ +div.mandoc td.head-rtitle { width: 10%; + text-align: right; } /* Document header: right-title. */ div.mandoc .display { } /* All Bd, D1, Dl. */ div.mandoc .list { } /* All Bl. */ div.mandoc i { } /* Italic: BI, IB, I, (implicit). */ -- cgit