From f16e2cfd5b92630dbfc9640e00f3cd905703834f Mon Sep 17 00:00:00 2001 From: Steven Giesel Date: Sat, 24 Jul 2021 12:51:10 +0200 Subject: [PATCH] Small background gradient for better visibility --- LinkDotNet.Blog.Web/wwwroot/css/basic.css | 3 +++ 1 file changed, 3 insertions(+) diff --git a/LinkDotNet.Blog.Web/wwwroot/css/basic.css b/LinkDotNet.Blog.Web/wwwroot/css/basic.css index d84fe085..129b249e 100644 --- a/LinkDotNet.Blog.Web/wwwroot/css/basic.css +++ b/LinkDotNet.Blog.Web/wwwroot/css/basic.css @@ -39,6 +39,8 @@ --blog-post-background-color: var(--big-stone); + --background-gradient-start: var(--white); + --background-gradient-end: var(--wild-sand); } @@ -48,6 +50,7 @@ html { body { margin: 0; + background-image: linear-gradient(to bottom, var(--background-gradient-start) 60%, var(--background-gradient-end)); background-repeat: no-repeat; background-attachment: fixed; font-family: 'Quicksand', sans-serif;