diff options
author | Matthew Lemon <y@yulqen.org> | 2024-02-12 17:25:59 +0000 |
---|---|---|
committer | Matthew Lemon <y@yulqen.org> | 2024-02-12 17:25:59 +0000 |
commit | 87f80eedecd151cd7c10cd4988781640e823a8e0 (patch) | |
tree | 6f04c1b34b4957638ae636dae0074123d29f4364 | |
parent | b7aafa9179ad54049d47d7dae76c9be2cb5b93a5 (diff) |
Adds gradient to table header
-rw-r--r-- | ui/static/css/main.css | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/ui/static/css/main.css b/ui/static/css/main.css index 916eac6..8070c56 100644 --- a/ui/static/css/main.css +++ b/ui/static/css/main.css @@ -84,7 +84,8 @@ table#home-summary-table thead th:nth-child(1) { table#home-summary-table th { /* border: solid 2px #ccc; */ - background: lightgray; + /* background: lightgray; */ + background: linear-gradient(to bottom, rgb(0 0 0 / 10%), rgb(0 0 0 / 30%)); /* font-weight: unset; */ letter-spacing: 1px; text-align: left; |