diff options
author | Matthew Lemon <y@yulqen.org> | 2024-02-11 10:20:14 +0000 |
---|---|---|
committer | Matthew Lemon <y@yulqen.org> | 2024-02-11 10:20:14 +0000 |
commit | 2b3b309e974c6abba34cb1a419e78761d86b8a35 (patch) | |
tree | 873beb740e3594a3f4ffa6b7f5e93a1c68370b9b /ui/static | |
parent | 8ac695cf14f0bb4b718de6d4bcbf3c8623079fe2 (diff) |
Started mocking out home page in HTML and CSS
Adding initial styles; currently working on a big summary table for the
front page, that is going to provide the main entry point to all the
relevant business data.
Diffstat (limited to 'ui/static')
-rw-r--r-- | ui/static/css/main.css | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/ui/static/css/main.css b/ui/static/css/main.css index 83af795..9ad0c83 100644 --- a/ui/static/css/main.css +++ b/ui/static/css/main.css @@ -20,3 +20,15 @@ a { a:hover { text-decoration: underline; } + +table#home-summary-table, +table#home-summary-table a, +table#home-summary-table td { + background: white; +} + +table#home-summary-table th { + /* border: solid 2px #ccc; */ + background: lightgray; +} + |