diff --git a/functions.php b/functions.php index 17f2a6c..e4a1ba1 100644 --- a/functions.php +++ b/functions.php @@ -126,6 +126,8 @@ function vaultTxns($csv) { $output .= ' '; + $csv = array_reverse($csv); + foreach ($csv as $entry) { if ($entry[2] == 'Vault withdraw') { $class = 'debit'; diff --git a/style.css b/style.css index 07a0473..00028ed 100644 --- a/style.css +++ b/style.css @@ -4,6 +4,8 @@ } body { + background: #000; + color: #fff; font-family: 'Roboto', sans-serif; padding: 0 1em; } @@ -16,7 +18,7 @@ body { grid-row-gap: 0px; } -table {width: 100%; } +table { color: #000; width: 100%; } table, tr, td { border: 1px solid #333; @@ -24,6 +26,8 @@ table, tr, td { } thead td { + background: #ccc; + color: #000; font-weight: bold; padding: .15em 1em; text-align: center;