From 7505340c037682cf2894079aed1177499a162542 Mon Sep 17 00:00:00 2001 From: newick Date: Tue, 20 Nov 2018 10:56:57 +0100 Subject: [PATCH] =?UTF-8?q?fix(#3):=20am=C3=A9lioration=20du=20design=20de?= =?UTF-8?q?s=20boutons?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- public/style.css | 20 +++++++++++++++++--- 1 file changed, 17 insertions(+), 3 deletions(-) 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; }