From 39b98e6b450cfdf35fafb916f31c05632baa70fc Mon Sep 17 00:00:00 2001 From: "L. Karkkainen" Date: Mon, 6 Feb 2023 13:13:01 +0000 Subject: [PATCH] Logo shadow to make it show up on white background. --- sanic/pages/styles/BasePage.css | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/sanic/pages/styles/BasePage.css b/sanic/pages/styles/BasePage.css index f31ff333..378a8950 100644 --- a/sanic/pages/styles/BasePage.css +++ b/sanic/pages/styles/BasePage.css @@ -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 } }