From 528b29e0ffbdcc189e0a2e300b32409d7cfed7b0 Mon Sep 17 00:00:00 2001 From: Zorchenhimer Date: Fri, 29 Nov 2019 12:46:53 -0500 Subject: [PATCH] Make the login links easier to see Changed the color of the three links under the login box to be easier to read. Also removed the underline unless it's being hovered over. --- static/css/site.css | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/static/css/site.css b/static/css/site.css index 7962f5c..4a9b33c 100644 --- a/static/css/site.css +++ b/static/css/site.css @@ -2,6 +2,7 @@ --var-border: 1px solid #606060; --var-border-radius: 5px; --var-message-color: #f4f4f4; + --var-link-color: #a9c8c3; --var-contrast-color: #1bf7ec; --var-background-color: #0F0F11; --var-popout-color: #393940; @@ -269,6 +270,15 @@ input[type=text] { margin: 5px auto; } +#joinbox a { + text-decoration: none; + color: var(--var-link-color); +} + +#joinbox a:hover { + text-decoration: underline; +} + #chat { display: grid; grid-template-rows: 1.5em min-content 1fr 6em 2.5em 1em;