From 2132f6b8cffcb522a27e02e7fd4bb51f3cbe65a3 Mon Sep 17 00:00:00 2001 From: Stefano Pigozzi Date: Sun, 5 Jun 2022 17:51:02 +0200 Subject: [PATCH] Improve shading even moer --- styles/components/icon.css | 2 +- styles/components/views/landing.css | 1 + styles/elements.css | 3 +-- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/styles/components/icon.css b/styles/components/icon.css index 2d82074..8fbbc53 100644 --- a/styles/components/icon.css +++ b/styles/components/icon.css @@ -1,3 +1,3 @@ .icon { - filter: drop-shadow(1px 1px 0 var(--background)); + filter: drop-shadow(1px 1px 2px var(--background)); } diff --git a/styles/components/views/landing.css b/styles/components/views/landing.css index cfe8916..d78d63a 100644 --- a/styles/components/views/landing.css +++ b/styles/components/views/landing.css @@ -15,6 +15,7 @@ .view-landing-titles { grid-area: titles; + text-shadow: 2px 2px 4px var(--background); } .view-landing-titles-title { diff --git a/styles/elements.css b/styles/elements.css index a38550b..4bb91be 100644 --- a/styles/elements.css +++ b/styles/elements.css @@ -6,13 +6,12 @@ body { color: var(--foreground); font-family: sans-serif; - text-shadow: 1px 1px 0 var(--background); + text-shadow: 1px 1px 2px var(--background); min-height: 100vh; } h1, h2, h3, h4, h5, h6 { - text-shadow: 2px 2px 0 var(--background); margin: 0; }