Skip to content

Commit

Permalink
Merge pull request #19 from mit-dormcon/credits
Browse files Browse the repository at this point in the history
Give Bob credit at the end of the booklet
  • Loading branch information
camtheman256 authored Aug 14, 2023
2 parents 17f9c74 + 5f90e03 commit aba98ba
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 2 deletions.
16 changes: 14 additions & 2 deletions static/guide-bw.css
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down Expand Up @@ -82,7 +82,6 @@ body {

.post {
page-break-before: always;
page-break-after: always;
display: block;
width: auto;
margin: 5px 10px;
Expand All @@ -103,6 +102,12 @@ body {
font-size: 14pt;
}

.credit {
display: none;
font-style: italic;
text-align: center;
}

@media print {
body {
font-size: 18pt;
Expand All @@ -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);
Expand All @@ -134,3 +142,7 @@ body {
}
/* may want to style visited links */
}

@page {
size: A3;
}
1 change: 1 addition & 0 deletions templates/credit.html
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
<p class="credit">Printed by Goodfellow Printing in Iowa City, IA</p>
2 changes: 2 additions & 0 deletions templates/guide.html
Original file line number Diff line number Diff line change
Expand Up @@ -79,5 +79,7 @@
</div>
{% endif %}
</div>

{% include "credit.html" %}
</body>
</html>

0 comments on commit aba98ba

Please sign in to comment.