From f2654390e79c2bb2988404b9526d670b48c5985f Mon Sep 17 00:00:00 2001 From: "Paul Gauthier (aider)" Date: Wed, 19 Mar 2025 12:18:03 -0700 Subject: [PATCH] style: Add gradient to sidebar matching hero section --- aider/website/_includes/head_custom.html | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/aider/website/_includes/head_custom.html b/aider/website/_includes/head_custom.html index 9831d13d3..4ef264500 100644 --- a/aider/website/_includes/head_custom.html +++ b/aider/website/_includes/head_custom.html @@ -21,6 +21,11 @@ text-decoration: none; letter-spacing: 0.5px; } + + /* Sidebar gradient styling to match hero section */ + .side-bar { + background: linear-gradient(135deg, rgba(20, 176, 20, 0.15) 0%, rgba(20, 176, 20, 0.1) 25%, rgba(201, 214, 255, 0.7) 50%, rgba(179, 198, 255, 0.8) 75%, rgba(163, 189, 255, 0.9) 100%); + }