From d54ac6880cf4f4c7592b094ac2773628bc71f567 Mon Sep 17 00:00:00 2001 From: Arnaud Rebillout Date: Sun, 26 Jul 2020 22:20:37 +0700 Subject: [PATCH] Fix CSS for other background colors Basically, we just lighten or darken where need be, instead of hardcoding colors. --- static/css/hyde.css | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/static/css/hyde.css b/static/css/hyde.css index fc3a705..e5b2645 100644 --- a/static/css/hyde.css +++ b/static/css/hyde.css @@ -91,7 +91,7 @@ html { .sidebar-about .profile-picture { margin: 0 auto; border-radius: 50%; - border: 2px solid #5b8da2; + border: 2px solid #0001; max-width: 5rem; } @@ -102,7 +102,7 @@ html { .sidebar-nav-item { display: block; padding: .25rem 0.5rem; - background: #7dafc4; + background: #fff2; margin: 0 .2rem; border-radius: .25rem; text-transform: uppercase; @@ -113,11 +113,11 @@ html { } a.sidebar-nav-item:hover, a.sidebar-nav-item:focus { - background: #6096ac; + background: #0001; text-decoration: none; } .sidebar-nav-item.active { - color: #6096ac; + color: #0001; background: #fff; } a.sidebar-nav-item.active:hover,