Why, then, does the idea persist?
This commit is contained in:
parent
1d9a04f4f3
commit
6acdfd29a9
2 changed files with 24 additions and 20 deletions
|
@ -1,10 +1,9 @@
|
|||
/* Document Layout */
|
||||
|
||||
body {
|
||||
line-height: 1.1;
|
||||
line-height: 1.2;
|
||||
font-family: sans-serif;
|
||||
font-size: 1.5em
|
||||
margin: 10px;
|
||||
background: "#ffffff";
|
||||
}
|
||||
|
||||
|
@ -17,6 +16,7 @@ body {
|
|||
display: flex;
|
||||
flex-direction: column;
|
||||
text-align: center;
|
||||
margin: 10px;
|
||||
}
|
||||
|
||||
.column {
|
||||
|
@ -33,7 +33,10 @@ body {
|
|||
.headline-1 {
|
||||
color: #000000;
|
||||
background: #fff000;
|
||||
font-size: 12px;
|
||||
font-size: 1.0em;
|
||||
padding: 0px;
|
||||
margin-top: 0px;
|
||||
margin-bottom: 5px;
|
||||
}
|
||||
|
||||
.headline-2 {
|
||||
|
@ -41,9 +44,10 @@ body {
|
|||
border-color: #ffa000;
|
||||
font-family: sans-serif;
|
||||
font-size: 1.5em;
|
||||
padding: 10px;
|
||||
margin: 10px;
|
||||
text-align: center;
|
||||
padding: 5px;
|
||||
margin-top: 5px;
|
||||
margin-bottom: 5px;
|
||||
}
|
||||
|
||||
.headline-3 {
|
||||
|
@ -51,9 +55,10 @@ body {
|
|||
border-color: #ffa000;
|
||||
font-family: Courier;
|
||||
font-size: 1.5em
|
||||
padding: 10px;
|
||||
margin: 10px;
|
||||
text-align: center;
|
||||
padding: 5px;
|
||||
margin-top: 5px;
|
||||
margin-bottom: 5px;
|
||||
}
|
||||
|
||||
|
||||
|
@ -62,17 +67,18 @@ body {
|
|||
.title {
|
||||
font-size: 1.5em;
|
||||
font-weight: bold;
|
||||
margin-bottom: 10px;
|
||||
padding-top: 0em;
|
||||
padding-bottom: 0em;
|
||||
}
|
||||
|
||||
.subtitle {
|
||||
font-size: 1.3em;
|
||||
margin-bottom: 10px;
|
||||
font-size: 1.2em;
|
||||
padding-top: 1.3em;
|
||||
padding-bottom: 0.1em;
|
||||
}
|
||||
|
||||
.item {
|
||||
font-size: 1em;
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
|
||||
|
||||
|
@ -81,16 +87,14 @@ body {
|
|||
.budget-subtotal {
|
||||
font-family: monospace;
|
||||
font-size: 1.2em;
|
||||
margin-top: 5px;
|
||||
margin-bottom: 5px;
|
||||
display: table-row;
|
||||
}
|
||||
|
||||
.subtotal-name {
|
||||
font-family: serif;
|
||||
font-size: 1.1em;
|
||||
margin-bottom: 5px;
|
||||
padding-top: 20px;
|
||||
padding-top: 0.5em;
|
||||
padding-bottom: 0.1em;
|
||||
display: table-cell;
|
||||
}
|
||||
|
||||
|
@ -108,14 +112,14 @@ body {
|
|||
.budget-item {
|
||||
font-family: monospace;
|
||||
font-size: 0.9em;
|
||||
margin-bottom: 10px;
|
||||
display: table-row;
|
||||
}
|
||||
|
||||
.item-name {
|
||||
font-family: serif;
|
||||
font-size: 0.9em;
|
||||
margin-bottom: 5px;
|
||||
padding-top: 0.1em;
|
||||
padding-bottom: 0.1em;
|
||||
display: table-cell;
|
||||
}
|
||||
|
||||
|
@ -123,6 +127,7 @@ body {
|
|||
font-family: sans-serif;
|
||||
font-size: 0.9em;
|
||||
font-weight: bold;
|
||||
display: table-cell;
|
||||
padding-left: 20px;
|
||||
text-align: right;
|
||||
display: table-cell;
|
||||
}
|
||||
|
|
|
@ -854,10 +854,9 @@ END
|
|||
print_subtotal("INCOME: / donations, contributions, sums, funds");
|
||||
|
||||
while (my $recordf = $sthf->fetchrow_hashref) {
|
||||
print_item("€$recordf->{amount}");
|
||||
print_item("", sprintf("€%.2f", $recordf->{amount}));
|
||||
}
|
||||
|
||||
print(qq(</div></div>));
|
||||
|
||||
## actual paid deposits
|
||||
while (my $recordar = $sthar->fetchrow_hashref) {
|
||||
|
|
Loading…
Reference in a new issue