From 52c6bfec2353ea8a005d496f0b545f95c473bc53 Mon Sep 17 00:00:00 2001 From: cassowarii <2374677+cassowarii@users.noreply.github.com> Date: Mon, 27 Jul 2026 23:01:06 -0700 Subject: [PATCH] a tasteful olive color --- static/gitweb-site.css | 20 +++++++++++++++----- 1 file changed, 15 insertions(+), 5 deletions(-) diff --git a/static/gitweb-site.css b/static/gitweb-site.css index da63525..c12a9ef 100644 --- a/static/gitweb-site.css +++ b/static/gitweb-site.css @@ -2,6 +2,16 @@ box-sizing: border-box; } +:root { + --tasteful-olive-1: #B2D874; + --tasteful-olive-2: #91C659; +} + +html { + min-height: 100%; + height: 100%; +} + input[title^="Search project"] { max-width: 50%; } @@ -10,6 +20,11 @@ div.page_header, div.page_footer { height: unset; overflow: auto; + background-color: var(--tasteful-olive-2); +} + +body { + border: 1px solid var(--tasteful-olive-2); } div.page_body, @@ -18,11 +33,6 @@ div.patch { overflow-x: scroll; } -html { - min-height: 100%; - height: 100%; -} - table.projects_list tr td:first-child { /* "last change" text */ white-space: nowrap; -- 1.8.3.1