From 7ce2b212e51febacb3e318f95a8f2075ed721ca8 Mon Sep 17 00:00:00 2001 From: Anton Livaja Date: Sun, 16 Mar 2025 17:53:05 -0700 Subject: [PATCH] fix team cards --- _sass/base.scss | 28 ++++++++++++++++++++++++++-- 1 file changed, 26 insertions(+), 2 deletions(-) diff --git a/_sass/base.scss b/_sass/base.scss index a8a3cb8..d363689 100644 --- a/_sass/base.scss +++ b/_sass/base.scss @@ -607,12 +607,21 @@ hr { } .team .card { + border-radius: 0px; padding: 20px; min-height: 120px; min-width: unset; - height: 180px; + height: 165px; + border: 1px solid var(--mid-grey); margin-left: 0px; - width: 220px; + background: radial-gradient(circle, rgba(41, 41, 41, 0.6) 20%, #120F1A 100%); + box-shadow: + 0px 4px 6px rgba(0, 0, 0, 0.5), + 0px 10px 30px rgba(0, 0, 0, 0.3); +} + +.team .card:hover { + border: 1px solid var(--mid-grey); } .team .title { @@ -623,6 +632,7 @@ hr { font-size: 15px; margin-top: 0px; margin-bottom: 0px; + color: var(--light-grey); } .team img { @@ -633,6 +643,15 @@ hr { .team .flex-container { justify-content: flex-start; } +.team h5 { + font-size: 20px !important; + text-transform: lowercase; +} + +.team .flex-container-inner { + margin-bottom: 0px; + margin-right: 20px; +} /** * End-Company Page @@ -1487,6 +1506,10 @@ pre { .who-we-are-section { flex-direction: column-reverse; } + + .team .flex-container-inner { + margin-bottom: 30px; + } } @media (max-width: 600px) { @@ -1555,5 +1578,6 @@ pre { font-size: 50px !important; line-height: 50px !important; } + }