Why, then, does the idea persist?

This commit is contained in:
nik gaffney 2021-08-27 20:03:22 +02:00
parent 1d9a04f4f3
commit 6acdfd29a9
2 changed files with 24 additions and 20 deletions

View file

@ -1,10 +1,9 @@
/* Document Layout */ /* Document Layout */
body { body {
line-height: 1.1; line-height: 1.2;
font-family: sans-serif; font-family: sans-serif;
font-size: 1.5em font-size: 1.5em
margin: 10px;
background: "#ffffff"; background: "#ffffff";
} }
@ -17,6 +16,7 @@ body {
display: flex; display: flex;
flex-direction: column; flex-direction: column;
text-align: center; text-align: center;
margin: 10px;
} }
.column { .column {
@ -33,7 +33,10 @@ body {
.headline-1 { .headline-1 {
color: #000000; color: #000000;
background: #fff000; background: #fff000;
font-size: 12px; font-size: 1.0em;
padding: 0px;
margin-top: 0px;
margin-bottom: 5px;
} }
.headline-2 { .headline-2 {
@ -41,9 +44,10 @@ body {
border-color: #ffa000; border-color: #ffa000;
font-family: sans-serif; font-family: sans-serif;
font-size: 1.5em; font-size: 1.5em;
padding: 10px;
margin: 10px;
text-align: center; text-align: center;
padding: 5px;
margin-top: 5px;
margin-bottom: 5px;
} }
.headline-3 { .headline-3 {
@ -51,9 +55,10 @@ body {
border-color: #ffa000; border-color: #ffa000;
font-family: Courier; font-family: Courier;
font-size: 1.5em font-size: 1.5em
padding: 10px;
margin: 10px;
text-align: center; text-align: center;
padding: 5px;
margin-top: 5px;
margin-bottom: 5px;
} }
@ -62,17 +67,18 @@ body {
.title { .title {
font-size: 1.5em; font-size: 1.5em;
font-weight: bold; font-weight: bold;
margin-bottom: 10px; padding-top: 0em;
padding-bottom: 0em;
} }
.subtitle { .subtitle {
font-size: 1.3em; font-size: 1.2em;
margin-bottom: 10px; padding-top: 1.3em;
padding-bottom: 0.1em;
} }
.item { .item {
font-size: 1em; font-size: 1em;
margin-bottom: 10px;
} }
@ -81,16 +87,14 @@ body {
.budget-subtotal { .budget-subtotal {
font-family: monospace; font-family: monospace;
font-size: 1.2em; font-size: 1.2em;
margin-top: 5px;
margin-bottom: 5px;
display: table-row; display: table-row;
} }
.subtotal-name { .subtotal-name {
font-family: serif; font-family: serif;
font-size: 1.1em; font-size: 1.1em;
margin-bottom: 5px; padding-top: 0.5em;
padding-top: 20px; padding-bottom: 0.1em;
display: table-cell; display: table-cell;
} }
@ -108,14 +112,14 @@ body {
.budget-item { .budget-item {
font-family: monospace; font-family: monospace;
font-size: 0.9em; font-size: 0.9em;
margin-bottom: 10px;
display: table-row; display: table-row;
} }
.item-name { .item-name {
font-family: serif; font-family: serif;
font-size: 0.9em; font-size: 0.9em;
margin-bottom: 5px; padding-top: 0.1em;
padding-bottom: 0.1em;
display: table-cell; display: table-cell;
} }
@ -123,6 +127,7 @@ body {
font-family: sans-serif; font-family: sans-serif;
font-size: 0.9em; font-size: 0.9em;
font-weight: bold; font-weight: bold;
display: table-cell; padding-left: 20px;
text-align: right; text-align: right;
display: table-cell;
} }

View file

@ -854,10 +854,9 @@ END
print_subtotal("INCOME: / donations, contributions, sums, funds"); print_subtotal("INCOME: / donations, contributions, sums, funds");
while (my $recordf = $sthf->fetchrow_hashref) { while (my $recordf = $sthf->fetchrow_hashref) {
print_item("€$recordf->{amount}"); print_item("", sprintf("€%.2f", $recordf->{amount}));
} }
print(qq(</div></div>));
## actual paid deposits ## actual paid deposits
while (my $recordar = $sthar->fetchrow_hashref) { while (my $recordar = $sthar->fetchrow_hashref) {