From 37b81eb97cc429646d9f2ade6634e93ef74e1e32 Mon Sep 17 00:00:00 2001 From: Sarah Conway Date: Sat, 22 Sep 2018 08:06:09 -0700 Subject: [PATCH] update button styles --- static/css/style.css | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/static/css/style.css b/static/css/style.css index c007531..9564646 100644 --- a/static/css/style.css +++ b/static/css/style.css @@ -37,6 +37,10 @@ h3 { font-weight: 600; } +a { + font-weight: 600; +} + /* FOOTER */ footer { @@ -125,7 +129,7 @@ input[type="submit"], input[type="reset"], input[type="button"], .button { -o-transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out; -ms-transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out; transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out; - background-color: #34495e; + background-color: #337ab7; border-radius: 15px; color: #fff; border: 0; @@ -140,6 +144,10 @@ input[type="submit"], input[type="reset"], input[type="button"], .button { white-space: nowrap; } +input[type="submit"]:hover { + background-color: #34495e; +} + /* OUR TEAM */ .title { -- 2.39.5