diff options
| author | Andrew Lee <alee14498@protonmail.com> | 2024-02-05 17:50:51 -0500 |
|---|---|---|
| committer | Andrew Lee <alee14498@protonmail.com> | 2024-02-05 17:50:51 -0500 |
| commit | 0fed60dc83db376ddb3f7c835894db29dfe51994 (patch) | |
| tree | 2c2fcbb10cd0e28c9dab92463e41174f1e759bf9 /src/styles | |
| parent | dfdf64af769b97d2342cf8b3c6fa25106bfb9acf (diff) | |
| download | personal-website-0fed60dc83db376ddb3f7c835894db29dfe51994.tar.gz personal-website-0fed60dc83db376ddb3f7c835894db29dfe51994.tar.bz2 personal-website-0fed60dc83db376ddb3f7c835894db29dfe51994.zip | |
Pagination; Disabled form when sending
Diffstat (limited to 'src/styles')
| -rw-r--r-- | src/styles/GuestbookForm.css | 23 |
1 files changed, 7 insertions, 16 deletions
diff --git a/src/styles/GuestbookForm.css b/src/styles/GuestbookForm.css index 0ad343c..2dd3bbf 100644 --- a/src/styles/GuestbookForm.css +++ b/src/styles/GuestbookForm.css @@ -18,21 +18,12 @@ resize: none; } -.card form button { - padding: 10px; - border-radius: 5px; - border: none; - background-color: #609460; - color: white; - cursor: pointer; - transition: ease-in-out 0.2s; -} - -.card form button:hover { - background-color: #486e48; - transition: ease-in-out 0.2s; -} -.card form button:active { - background-color: #243824; +.card form input:disabled, +.card form textarea:disabled, +.card form button:disabled { + background: #5a5a5a; + border-color: #5a5a5a; + color: #c7c7c7; + cursor: not-allowed; } |
