diff --git a/public/style.css b/public/style.css index 3ad60e9f..2c5a29f0 100644 --- a/public/style.css +++ b/public/style.css @@ -26,10 +26,20 @@ button, margin: 10px auto auto; padding: 8px 0; text-align: center; - color: blue; - border: 1px solid blue; + color: #4a90e2; + font-weight: 600; + border: 2px solid #4a90e2; border-radius: 4px; background-color: white; + transition: all 0.2s ease-in-out; + cursor: pointer; +} +.btn:hover, +button:hover, +[type="submit"]:hover { + color: #fff; + background-color: #4a90e2; + text-decoration: none; } .btn-no-style { @@ -46,6 +56,10 @@ section button { color: #4a4a4a; border-color: #4a4a4a; } +section button:hover { + color: #fff; + background-color: #4a4a4a; +} label, input { @@ -86,7 +100,7 @@ input[type="date"]:disabled { } .toggle-field { - color: blue; + color: #4a90e2; cursor: pointer; text-decoration: underline; }