From 92c97da7feefc9a28bcd7d6ba0fea9399fe2bce7 Mon Sep 17 00:00:00 2001 From: danix Date: Tue, 28 Feb 2023 12:02:54 +0100 Subject: [PATCH] fixing gradients again --- gitweb-danixland/gitweb.css | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/gitweb-danixland/gitweb.css b/gitweb-danixland/gitweb.css index 4048e16..80ee0cb 100644 --- a/gitweb-danixland/gitweb.css +++ b/gitweb-danixland/gitweb.css @@ -176,8 +176,8 @@ td, th { font-size: 20px; font-family: 'Montserrat', Helvetica, Arial, Freesans, Clean, sans-serif; background: var(--bg); /* old browsers */ - background: -webkit-linear-gradient(bottom left, var(--bg) 0%, var(--fg) 100%); /* webkit */ - background: linear-gradient(to top right, var(--bg) 0%, var(--fg) 100%); + background: -webkit-linear-gradient(bottom left, var(--bg) 0%, var(--bg-alt) 100%); /* webkit */ + background: linear-gradient(to top right, var(--bg) 0%, var(--bg-alt) 100%); border-bottom: 1px solid rgba(var(--border)); } @@ -215,8 +215,8 @@ td, th { .site-footer { width: 100%; background: var(--bg); /* old browsers */ - background: -webkit-linear-gradient(bottom left, var(--bg) 0%, var(--fg) 100%); /* webkit */ - background: linear-gradient(to top right, var(--bg) 0%, var(--fg) 100%); + background: -webkit-linear-gradient(bottom left, var(--bg) 0%, var(--bg-alt) 100%); /* webkit */ + background: linear-gradient(to top right, var(--bg) 0%, var(--bg-alt) 100%); margin: 0; } -- 2.20.1