diff options
author | Matthew Lemon <y@yulqen.org> | 2024-02-11 06:59:13 +0000 |
---|---|---|
committer | Matthew Lemon <y@yulqen.org> | 2024-02-11 06:59:13 +0000 |
commit | 8ac695cf14f0bb4b718de6d4bcbf3c8623079fe2 (patch) | |
tree | 222d437c8f467b0e6516d5e5812e205845f724c4 /ui/static/css/main.css | |
parent | 7edf5bb90d002c39b474f87744f19c318783651c (diff) |
Adds small-font css
Basing CSS styles on the look and feel of cgit, this commit actually
includes the cgit css file in the tree for reference.
I don't want to get too carried away with CSS at this point but this is
a start.
Diffstat (limited to 'ui/static/css/main.css')
-rw-r--r-- | ui/static/css/main.css | 19 |
1 files changed, 17 insertions, 2 deletions
diff --git a/ui/static/css/main.css b/ui/static/css/main.css index 174d90f..83af795 100644 --- a/ui/static/css/main.css +++ b/ui/static/css/main.css @@ -1,7 +1,22 @@ * { box-sizing: border-box; margin: 0em; - padding: 0em; + padding: 4px; font-size: 10pt; - /* font-family: "Ubuntu Mono", monospace; */ + font-family: sans-serif; + color: #333; + background: lightgray; +} + +nav { + border-bottom: solid 3px #ccc; +} + +a { + color: green; + text-decoration: none; +} + +a:hover { + text-decoration: underline; } |