Style members area

This commit is contained in:
Chris Lowis
2025-06-20 15:51:36 +01:00
parent 33db3c91c7
commit a39fcae98b
2 changed files with 60 additions and 10 deletions

View File

@ -120,6 +120,10 @@ h1, h2, h3, h4, h5, h6 {
background-color: var(--cotech-light-grey);
}
.slice-subtitle {
color: var(--cotech-light-grey);
}
.metadata {
display: flex;
gap: var(--space-xl);
@ -143,3 +147,48 @@ h1, h2, h3, h4, h5, h6 {
font-size: 2.2rem;
letter-spacing: 0.02em;
}
.logo-grid {
display: grid;
grid-template-columns: repeat(1, 1fr);
}
@media screen and (width >= 480px) {
.logo-grid {
grid-template-columns: repeat(2, 1fr);
}
}
@media screen and (width >= 720px) {
.logo-grid {
grid-template-columns: repeat(3, 1fr);
}
}
@media screen and (width >= 960px) {
.logo-grid {
grid-template-columns: repeat(4, 1fr);
}
}
.logo-grid_item {
width: 240px;
height: 120px;
border: 1px solid var(--cotech-light-grey);
padding: var(--space-sm);
}
.logo-grid_link {
width: 100%;
}
.logo-grid_img {
width: 100%;
height: 100%;
object-fit: contain;
transition: transform .2s;
}
.logo-grid_img:hover {
transform: scale(1.1);
}