diff --git a/static/guide-bw.css b/static/guide-bw.css index f15f9f8..b590e4c 100644 --- a/static/guide-bw.css +++ b/static/guide-bw.css @@ -4,7 +4,7 @@ body { background-color: #ffffff; - font-family: 'Noto Sans', Helvetica, Arial, sans-serif, 'Noto Emoji'; + font-family: "Noto Sans", Helvetica, Arial, sans-serif, "Noto Emoji"; } .main-title { @@ -82,7 +82,6 @@ body { .post { page-break-before: always; - page-break-after: always; display: block; width: auto; margin: 5px 10px; @@ -103,6 +102,12 @@ body { font-size: 14pt; } +.credit { + display: none; + font-style: italic; + text-align: center; +} + @media print { body { font-size: 18pt; @@ -125,6 +130,9 @@ body { text-align: center; bottom: 0; } + .credit { + display: block; + } .event { /* necessary to not have the top border show up on the previous page */ transform: translateY(2px); @@ -134,3 +142,7 @@ body { } /* may want to style visited links */ } + +@page { + size: A3; +} diff --git a/templates/credit.html b/templates/credit.html new file mode 100644 index 0000000..690ddff --- /dev/null +++ b/templates/credit.html @@ -0,0 +1 @@ +
Printed by Goodfellow Printing in Iowa City, IA
diff --git a/templates/guide.html b/templates/guide.html index 016b35d..5fc0246 100644 --- a/templates/guide.html +++ b/templates/guide.html @@ -79,5 +79,7 @@ {% endif %} + + {% include "credit.html" %}