diff options
author | Frankie B <git@diskfloppy.me> | 2024-01-26 12:26:37 +0000 |
---|---|---|
committer | Frankie B <git@diskfloppy.me> | 2024-01-26 12:26:37 +0000 |
commit | fdeb7f1c48dad903b5c6f0297ce363eb71b9d216 (patch) | |
tree | 24e3e927922bb1c078be189ad5e405605c6c59b7 /public | |
parent | 7d0c7e41bf6b1c221311e5e0c7d1f8ad7ef31e7a (diff) |
Add UA to guestbook
Diffstat (limited to 'public')
-rw-r--r-- | public/css/master.css | 17 |
1 files changed, 16 insertions, 1 deletions
diff --git a/public/css/master.css b/public/css/master.css index 6b21f37..5fff0df 100644 --- a/public/css/master.css +++ b/public/css/master.css @@ -286,13 +286,24 @@ table.gb-entry-form tr td span.text-danger { } table.gb-entry-form tr td textarea, -table.gb-entry-form tr td input { +table.gb-entry-form tr td input, +table.gb-entry-form tr td button{ margin-bottom: 5px; margin-left: 10px; background-color: var(--background); border: var(--foreground) solid 1px; } +table.gb-entry-form tr td button { + color: var(--foreground); + background-color: var(--background-secondary); +} + +table.gb-entry-form tr td button:hover { + color: var(--background); + background-color: var(--foreground); +} + table.gb-entry-form-container { width: 100%; } @@ -327,6 +338,10 @@ table.gb-entry hr { border-bottom: none; } +table.gb-entry address { + font-size: 0.8pc; +} + table.gb-admin { margin-bottom: 5px; width: 500px; |