From: danix Date: Tue, 28 Feb 2023 11:10:24 +0000 (+0100) Subject: working on gradients X-Git-Url: https://git.danix.xyz/?a=commitdiff_plain;h=a63053b2b31e12ab1a8498f5b491ba48f0733e2b;hp=92c97da7feefc9a28bcd7d6ba0fea9399fe2bce7;p=gitweb-theme-danix.git working on gradients --- diff --git a/gitweb-danixland/gitweb.css b/gitweb-danixland/gitweb.css index 80ee0cb..02eb7f0 100644 --- a/gitweb-danixland/gitweb.css +++ b/gitweb-danixland/gitweb.css @@ -55,6 +55,7 @@ a { outline: none; } --link-visited: #e7b788; --border: 34,40,49,0.035; --accent: #FD7014; + --bluish-grey: #3f4c77; --dark-grey: #393E46; /* Icons */ --file-icon: url("file-dark.svg"); @@ -175,9 +176,9 @@ td, th { margin-bottom: 20px; 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(--bg-alt) 100%); /* webkit */ - background: linear-gradient(to top right, var(--bg) 0%, var(--bg-alt) 100%); + background: var(--bluish-grey); /* old browsers */ + background: -webkit-linear-gradient(bottom left, var(--accent) 0%, var(--bluish-grey) 100%); /* webkit */ + background: linear-gradient(to top right, var(--accent) 0%, var(--bluish-grey) 100%); border-bottom: 1px solid rgba(var(--border)); } @@ -214,9 +215,9 @@ td, th { .page_footer, .site-footer { width: 100%; - background: var(--bg); /* old browsers */ - 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%); + background: var(--bluish-grey); /* old browsers */ + background: -webkit-linear-gradient(bottom left, var(--bluish-grey) 0%, var(--accent) 100%); /* webkit */ + background: linear-gradient(to top right, var(--bluish-grey) 0%, var(--accent) 100%); margin: 0; }