From 1f630a03b95c91eaca78efbb3e607384d2ddfb45 Mon Sep 17 00:00:00 2001 From: "Paul Gauthier (aider)" Date: Wed, 19 Mar 2025 14:09:21 -0700 Subject: [PATCH] style: Update feature cards with blue underline instead of shaded header --- aider/website/assets/home.css | 17 +++++++++++++---- 1 file changed, 13 insertions(+), 4 deletions(-) diff --git a/aider/website/assets/home.css b/aider/website/assets/home.css index 537c7eb0b..d5e6f643a 100644 --- a/aider/website/assets/home.css +++ b/aider/website/assets/home.css @@ -254,10 +254,7 @@ nav { display: flex; align-items: center; margin-bottom: 20px; - padding: 12px 15px; - background-color: rgba(76, 110, 245, 0.1); - border-radius: 6px; - border-bottom: 1px solid rgba(76, 110, 245, 0.2); + padding: 0 0 12px 0; } .feature-icon { @@ -275,6 +272,18 @@ nav { font-size: 1.3rem; color: var(--dark); margin: 0; + position: relative; + padding-bottom: 12px; +} + +.feature-title::after { + content: ""; + position: absolute; + bottom: 0; + left: 0; + width: 60px; + height: 3px; + background-color: var(--primary); } .models {