aboutsummaryrefslogtreecommitdiff
path: root/src/styles/GuestbookForm.css
diff options
context:
space:
mode:
authorAndrew Lee <alee14498@protonmail.com>2024-02-05 17:50:51 -0500
committerAndrew Lee <alee14498@protonmail.com>2024-02-05 17:50:51 -0500
commit0fed60dc83db376ddb3f7c835894db29dfe51994 (patch)
tree2c2fcbb10cd0e28c9dab92463e41174f1e759bf9 /src/styles/GuestbookForm.css
parentdfdf64af769b97d2342cf8b3c6fa25106bfb9acf (diff)
downloadpersonal-website-0fed60dc83db376ddb3f7c835894db29dfe51994.tar.gz
personal-website-0fed60dc83db376ddb3f7c835894db29dfe51994.tar.bz2
personal-website-0fed60dc83db376ddb3f7c835894db29dfe51994.zip
Pagination; Disabled form when sending
Diffstat (limited to 'src/styles/GuestbookForm.css')
-rw-r--r--src/styles/GuestbookForm.css23
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;
}