-Misc fixes

-Add all entries CSV
This commit is contained in:
Keith Solomon
2022-12-17 18:17:37 -06:00
parent 9fe9df26bd
commit 119b2ee28c
5 changed files with 194 additions and 57 deletions
+12
View File
@@ -1,3 +1,11 @@
.grid {
display: grid;
grid-template-columns: repeat(2, 1fr);
grid-template-rows: 1fr;
grid-column-gap: 0px;
grid-row-gap: 0px;
}
table, tr, td {
border: 1px solid #333;
border-collapse: collapse;
@@ -10,4 +18,8 @@ thead td {
text-transform: uppercase;
}
tr.debit { background-color: #f77e82; }
tr.credit { background-color: #08817d; color: #fff; }
td { padding: .15em 1em; }