Impreved readability on smaller devices by applying an effect and different color to guild title on popup

master
Cristiano Pires 1 year ago
parent aa7251594b
commit d0a88ce736

@ -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);
}
}
:root {
--glow-color: rgba(0, 4, 255, 0.8);
}

Loading…
Cancel
Save