From 98992b754b670c168b87ea23b5cf35ba8f8250fb Mon Sep 17 00:00:00 2001 From: bill bittner Date: Fri, 9 Feb 2018 09:15:52 -0800 Subject: [PATCH] updated button css --- public/assets/css/general.css | 16 +++++++++++----- 1 file changed, 11 insertions(+), 5 deletions(-) diff --git a/public/assets/css/general.css b/public/assets/css/general.css index a5761b34..3f6d439c 100644 --- a/public/assets/css/general.css +++ b/public/assets/css/general.css @@ -407,12 +407,13 @@ button { cursor: pointer; } -.button--primary { +.button--primary, .button--primary:focus { border: 1px solid black; padding: 0.5em; margin: 0.5em 0.3em 0.5em 0.3em; color: black; background-color: white; + outline: 0px; } .button--primary:hover { @@ -422,18 +423,19 @@ button { } .button--primary:active{ - border: 1px solid #4156C5; - color: white; - background-color: white; + border: 1px solid #ffffff; + color: #d0d0d0; + background-color: #ffffff; } -.button--secondary { +.button--secondary, .button--secondary:focus { border: 0px; border-bottom: 1px solid black; padding: 0.5em; margin: 0.5em 0.3em 0.5em 0.3em; color: black; background-color: white; + outline: 0px; } .button--secondary:hover { @@ -441,6 +443,10 @@ button { color: #4156C5; } +.button--secondary:active { + color: #ffffff;; +} + .button--large{ margin: 0px; width: calc(100% - 2px);