diff options
author | Frankie B <git@diskfloppy.me> | 2024-01-22 00:09:48 +0000 |
---|---|---|
committer | Frankie B <git@diskfloppy.me> | 2024-01-22 00:09:48 +0000 |
commit | 4cded68dc45ba59cb5fbe878494e24549b05bff6 (patch) | |
tree | 5bf8954d637b8530abc84c8499aac1a14ec64f4b /public/css/master.css | |
parent | 460e9585d22090d7d9417e1ffd57e72838378005 (diff) |
CSS updates and a whole theme selector thing
Diffstat (limited to 'public/css/master.css')
-rw-r--r-- | public/css/master.css | 15 |
1 files changed, 14 insertions, 1 deletions
diff --git a/public/css/master.css b/public/css/master.css index 84b0ddf..a1def3d 100644 --- a/public/css/master.css +++ b/public/css/master.css @@ -238,7 +238,7 @@ table.computers p.description { } table.computers th { - background-color: var(--background-light); + background-color: var(--background-secondary); } table.computers td, @@ -288,6 +288,9 @@ table.gb-entry-form tr td span.text-danger { table.gb-entry-form tr td textarea, table.gb-entry-form tr td input { margin-bottom: 5px; + margin-left: 10px; + background-color: var(--background); + border: var(--foreground) solid 1px; } table.gb-entry-form-container { @@ -461,3 +464,13 @@ a:hover { margin: 0; color: var(--foreground) } + +label[for="scheme-selector"] { + font-weight: bold; +} + +#scheme-selector { + border: var(--foreground) solid 1px; + background-color: var(--background-secondary); + color: var(--foreground) +} |