From e0f5d894e4bf3f4f49da226e85408c10c4253734 Mon Sep 17 00:00:00 2001 From: David Grigg Date: Thu, 31 Oct 2019 15:22:46 +1100 Subject: [PATCH] Added signature class CSS --- www/contribute/semantics.php | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/www/contribute/semantics.php b/www/contribute/semantics.php index e3972cb0..6403d9dc 100644 --- a/www/contribute/semantics.php +++ b/www/contribute/semantics.php @@ -600,7 +600,7 @@ section[epub|type~="epigraph"] > * + *{ <p>I shall write again as soon as anything more is determined on.</p> <footer"> <p epub:type="z3998:valediction">Yours, etc.</p> - <p epub:type="z3998:sender">Edward Gardner</p> + <p class="signature" epub:type="z3998:sender">Edward Gardner</p> </footer> </blockquote>

CSS for letters:

@@ -628,6 +628,10 @@ footer{ margin-top: 1em; text-indent: 0; text-align: left; +} + +.signature{ + font-variant: small-caps; }