From 243e4b9e9a333ebf615841c6d54858d51d9f8d82 Mon Sep 17 00:00:00 2001 From: Maksim Pischulenok Date: Fri, 30 May 2025 14:10:31 +0300 Subject: [PATCH] Replace solid background image with semi-transparent overlay The change adds a dark semi-transparent gradient overlay to the background image to improve text readability. This creates better contrast between the foreground content and background image while maintaining visibility of the underlying image. --- static/index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/static/index.html b/static/index.html index 2dd5285..5aeb415 100644 --- a/static/index.html +++ b/static/index.html @@ -27,7 +27,7 @@ left: 0; width: 100%; height: 100%; - background-image: url('_.jpeg'); + background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('_.jpeg'); background-size: cover; background-position: center; background-repeat: no-repeat;