Logo shadow to make it show up on white background.

This commit is contained in:
L. Karkkainen 2023-02-06 13:13:01 +00:00
parent 3ddbda61d9
commit 39b98e6b45

View File

@ -73,18 +73,21 @@ a:focus {
outline: none;
}
#logo {
height: 1.75rem;
padding: 0 0.25rem;
}
span.icon {
margin-right: 1rem;
}
#logo {
height: 1.75rem;
padding: 0 0.25rem;
filter: drop-shadow(.03rem .03rem .05rem #000);
}
@media (prefers-color-scheme: dark) {
html {
background: #111;
color: #ccc;
}
#logo { filter: none }
}