From a82a812be395fc6d25ffd42c705488afa9c69c29 Mon Sep 17 00:00:00 2001 From: AIIrondev Date: Mon, 30 Mar 2026 22:37:17 +0200 Subject: [PATCH] Add hero logo strip section with responsive styling and images --- Website/templates/main.html | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) diff --git a/Website/templates/main.html b/Website/templates/main.html index 2fad11f..16690ae 100644 --- a/Website/templates/main.html +++ b/Website/templates/main.html @@ -102,6 +102,22 @@ border: 1px solid #3a6970; } + .hero-logo-strip { + margin-bottom: 0.7rem; + display: grid; + grid-template-columns: repeat(3, minmax(0, 1fr)); + gap: 0.4rem; + } + + .hero-logo-strip img { + width: 100%; + height: 64px; + object-fit: cover; + border-radius: 8px; + border: 1px solid #4f7c82; + background: #ffffff; + } + .hero-card h3 { font-size: clamp(1rem, 1.8vw, 1.35rem); margin-bottom: 0.55rem; @@ -352,6 +368,10 @@ .logo-grid { grid-template-columns: 1fr; } + + .hero-logo-strip { + grid-template-columns: 1fr; + } } {% endblock %} @@ -376,6 +396,11 @@