From 659a4059d656e1ef7311a86c6d50a94a4014eac1 Mon Sep 17 00:00:00 2001 From: jakubmanczak Date: Thu, 9 Oct 2025 11:49:50 +0200 Subject: [PATCH] swap out main index page gradient --- web/index.html | 2 +- web/input.css | 9 +++++++++ 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/web/index.html b/web/index.html index 84d7261..4bffb36 100644 --- a/web/index.html +++ b/web/index.html @@ -2,7 +2,7 @@ {% block title %}gractwo.pl | Witamy!{% endblock %} {% block pagecontent %}
{% include "gractwo.svg" %} diff --git a/web/input.css b/web/input.css index 3bdd157..ec95a7c 100644 --- a/web/input.css +++ b/web/input.css @@ -8,3 +8,12 @@ --color-gractwo-blu-semidark: #47b2ad; --color-gractwo-blu-dark: #3d9994; } + +.bg-gractwo-index-light { + background-size: "100% 100%"; + background-image: radial-gradient( + 125% 125% at 50% 90%, + #ffffff 40%, + #ff637e 120% + ); +}