From 0180b027c5d67c434aaee2f3176347c8f984561e Mon Sep 17 00:00:00 2001 From: Aphanite <52218412+Aphanite@users.noreply.github.com> Date: Wed, 31 Jan 2024 03:09:00 +0100 Subject: [PATCH] Swap button colors (#4) * Toggle selected button style * Swap button colors --- website/assets/style.css | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/website/assets/style.css b/website/assets/style.css index c3b960a..c9ae71d 100644 --- a/website/assets/style.css +++ b/website/assets/style.css @@ -173,7 +173,7 @@ code { .btn { border: 0; border-radius: 0.25rem; - background: #2f5f8b; + background: #4892d9; color: white; font-size: 1rem; white-space: nowrap; @@ -186,7 +186,7 @@ code { } .btn.selected { - background: #4892d9; + background: #2f5f8b; } .button-container { @@ -197,7 +197,7 @@ code { } .btn:hover { - background: #4892d9; + background: #2f5f8b; } /*button:focus { }*/ /*button:active { }*/