fix team cards

This commit is contained in:
Anton Livaja 2025-03-16 17:53:05 -07:00
parent 01a2b79bb0
commit 7ce2b212e5
Signed by: anton
GPG Key ID: 44A86CFF1FDF0E85
1 changed files with 26 additions and 2 deletions

View File

@ -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;
}
}