From 51e1c307397de1af92be87da23b5090656507a67 Mon Sep 17 00:00:00 2001 From: danix Date: Tue, 28 Feb 2023 16:02:39 +0100 Subject: [PATCH] removing styles on other elements too. KISS rulez --- gitweb-danixland/gitweb.css | 22 ++++++++++------------ 1 file changed, 10 insertions(+), 12 deletions(-) diff --git a/gitweb-danixland/gitweb.css b/gitweb-danixland/gitweb.css index 5b3051e..2fbc2e3 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; + --shadow: 0,0,0,0.2; --bluish-grey: #3f4c77; --dark-grey: #393E46; --light-grey: #ababcf; @@ -78,6 +79,7 @@ a { outline: none; } --bg-alt: #222831; --fg: #D8D9CF; --border: 216,217,207,0.2; + --shadow: 255,255,255,0.2; --file-icon: url("file.svg"); --dir-icon: url("folder.svg"); --ref-icon: url("commit.svg"); @@ -169,6 +171,7 @@ td, th { /* Page Header ---------------------------------------------------------------------------- */ +/* breadcrumbs */ .page_header { height: 50px; line-height: 50px; @@ -177,8 +180,6 @@ td, th { margin-bottom: 20px; font-size: 20px; font-family: 'Montserrat', Helvetica, Arial, Freesans, Clean, sans-serif; - background: var(--bluish-grey); /* old browsers */ - background: linear-gradient(112deg, var(--bluish-grey) 10%, var(--light-grey) 75%); border-bottom: 1px solid rgba(var(--border)); } @@ -215,8 +216,6 @@ td, th { .page_footer, .site-footer { width: 100%; - background: var(--bluish-grey); /* old browsers */ - background: linear-gradient(112deg, var(--bluish-grey) 65%, var(--light-grey) 100%); margin: 0; } @@ -228,7 +227,7 @@ td, th { } .page_footer_text { - color: var(--bg); + color: var(--fg); text-align: right; padding-right: 2em; display: inline; @@ -318,10 +317,10 @@ div.page_header a img.logo { .history { width: 95%; margin: 0 auto 15px auto; -/* border: 1px solid rgba(var(--border)); - -moz-box-shadow: 0 0 3px rgba(0,0,0,0.2); - -webkit-box-shadow: 0 0 3px rgba(0,0,0,0.2); - box-shadow: 0 0 3px rgba(0,0,0,0.2);*/ + border: 1px solid rgba(var(--border)); + -moz-box-shadow: 0 0 3px rgba(var(--shadow)); + -webkit-box-shadow: 0 0 3px rgba(var(--shadow)); + box-shadow: 0 0 3px rgba(var(--shadow)); } .project_list th, @@ -503,9 +502,8 @@ th .header { .header { width: 94%; - margin: 0 auto 15px auto; - background: var(--light-grey); - border: 1px solid rgba(var(--border)); + margin: 0 auto; + border: 2px solid rgba(var(--border)); padding: 5px; } -- 2.20.1