From 99a4a09a672f2e70dba5da61401d33d86d29384f Mon Sep 17 00:00:00 2001 From: EKNr1 Date: Fri, 25 Oct 2024 23:24:56 +0200 Subject: [PATCH] Improved text shadows. --- styles.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/styles.php b/styles.php index 60dca7c..854a07d 100644 --- a/styles.php +++ b/styles.php @@ -12,7 +12,7 @@ html:not([data-scroll='0']) .topnav { font-family: ubuntu, arial; font-size: 16px; text-color: white; - text-shadow: 0px 0px 16px rgb(0, 0, 0), 0px 0px 16px rgb(0, 0, 0), 0px 0px 16px rgb(0, 0, 0); + text-shadow: 0px 0px 32px rgb(0, 0, 0), 0px 0px 32px rgb(0, 0, 0), 0px 0px 32px rgb(0, 0, 0); } body { @@ -24,12 +24,12 @@ p { padding-left: 20px; color: white; font-size: 16px; - text-shadow: 0px 0px 16px rgb(0, 0, 0), 0px 0px 16px rgb(0, 0, 0), 0px 0px 16px rgb(0, 0, 0); + text-shadow: 4px 4px 8px rgb(0, 0, 0), -4px 4px 8px rgb(0, 0, 0), -4px -4px 8px rgb(0, 0, 0), 4px -4px 8px rgb(0, 0, 0); } a { font-family: ubuntu, arial; - color: rgb(100, 100, 200); + color: rgb(120, 120, 255); text-decoration: none; }