www-new/components/TeamMember.module.css

43 lines
636 B
CSS
Raw Normal View History

2021-05-23 18:56:49 -04:00
.container {
width: calc(126rem / 16);
2021-05-23 18:56:49 -04:00
display: flex;
flex-direction: column;
margin: 0;
}
.img {
width: calc(118rem / 16);
height: calc(118rem / 16);
clip-path: circle();
object-fit: cover;
2021-05-23 18:56:49 -04:00
}
.caption {
text-align: center;
margin-top: calc(24rem / 16);
2021-05-23 18:56:49 -04:00
}
.name {
font-weight: 700;
color: var(--primary-accent);
2021-05-23 18:56:49 -04:00
}
.role {
font-weight: 600;
color: var(--primary-heading);
2021-05-23 18:56:49 -04:00
}
@media only screen and (max-width: calc(768rem / 16)) {
.img {
width: calc(126rem / 16);
height: calc(126rem / 16);
}
.caption {
text-align: center;
font-size: calc(14rem / 16);
margin-top: 1rem;
}
}