From d0a88ce736bbc6dad1743b7d751dab2225ef9d8d Mon Sep 17 00:00:00 2001 From: Cristiano Pires Date: Tue, 5 Dec 2023 15:23:29 +0000 Subject: [PATCH] Impreved readability on smaller devices by applying an effect and different color to guild title on popup --- public/css/dashboard.css | 27 ++++++++++++++++++++++++--- 1 file changed, 24 insertions(+), 3 deletions(-) diff --git a/public/css/dashboard.css b/public/css/dashboard.css index 59b3f71..9d4d53d 100644 --- a/public/css/dashboard.css +++ b/public/css/dashboard.css @@ -143,8 +143,24 @@ h1 } .guildname { - margin-top: 0.6em; - font-family: 'Lato' + margin-top: 0.6em; + font-size: 1.3em; + font-family: 'Lato', sans-serif; + color:black; + text-shadow: 0 0 15px var(--glow-color); + animation: glow 2s infinite alternate; +} + +@keyframes glow +{ + from + { + text-shadow: 0 0 15px var(--glow-color); + } + to + { + text-shadow: 0 0 25px var(--glow-color); + } } p { @@ -677,4 +693,9 @@ option ::-webkit-scrollbar-corner { background: rgba(0, 0, 0, 0.267); -} \ No newline at end of file +} + + +:root { + --glow-color: rgba(0, 4, 255, 0.8); +}