From: Matt Corallo Date: Mon, 15 Jul 2024 14:00:15 +0000 (+0000) Subject: Make text box and dropdown lighter on hover and unify mobile box X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=commitdiff_plain;h=d89f5be9cf910199dceba0684ab6fe360439c62d;p=satsto.me Make text box and dropdown lighter on hover and unify mobile box --- diff --git a/index.html b/index.html index 95355e3..1fac6ab 100644 --- a/index.html +++ b/index.html @@ -72,20 +72,26 @@ padding: 30px 0 20px 0 !important; } .text-box { - background: #3B6367; - border: none; - color: white; font-size: 1.5em; } .bitcoin { font-size: 1.5em; } .go-button { height: 2em !important; } .dropdown { - background: #3B6367; - border: none; - color: white; font-size: 12pt; } } + .text-box, .dropdown { + background: transparent; + border: none; + color: white; + } + .text-box:hover, .dropdown:hover { + background-color: rgba(255, 255, 255, 0.05); + } + .text-box:focus-visible { + outline: none; + background-color: rgba(255, 255, 255, 0.1); + } .bitcoin { color: #80A0A0; } .go-button { height: 1.5em; } .right-header {