From 44d6348400101f543675e43d96866291df369443 Mon Sep 17 00:00:00 2001 From: b1ek Date: Sat, 4 Mar 2023 11:16:47 +1000 Subject: [PATCH] button styling --- public/static/main.css | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/public/static/main.css b/public/static/main.css index b30518c..4e0d271 100644 --- a/public/static/main.css +++ b/public/static/main.css @@ -7,6 +7,7 @@ textarea { border: 1px solid #6c6f6c; border-radius: 4px; box-shadow: 0 2px 2px #20402030; + transition: 150ms ease; padding: 4px 8px } textarea:hover { @@ -16,4 +17,19 @@ textarea:hover { .data { width: 400px; height: 240px +} + + +input[type=submit] { + background-color: rgb(236, 221, 200); + border: 1px solid #9c9f9c; + border-radius: 4px; + margin-top: 8px; + padding: 4px 8px; + font-family: monospace; + box-shadow: 0 2px 2px #60806020; + transition: 150ms ease; +} +input[type=submit]:hover { + box-shadow: 0 2px 4px #60806040; } \ No newline at end of file