From 1f489866a6878086575f0a509969280939114555 Mon Sep 17 00:00:00 2001 From: Alexander Popov Date: Mon, 19 Dec 2022 17:36:30 +0300 Subject: [PATCH] update button text color --- src/styles.css | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/src/styles.css b/src/styles.css index ac51693..8eb4705 100644 --- a/src/styles.css +++ b/src/styles.css @@ -53,7 +53,6 @@ footer a { margin-top: 8px; } - input, button { box-sizing: border-box; border: 1px solid #121212; @@ -80,16 +79,15 @@ input:focus { button { background-color: #343434; - color: #606060; + color: #ffffff; border-left: 0; width: 100px; border-radius: 0 8px 8px 0; } button:hover { - color: #808080; - color: #ffffff; + background-color: #606060; transition: 250ms all; } button:active { - background-color: #606060; + background-color: #808080; }