www-new/components/TeamMember.module.css

40 lines
543 B
CSS
Raw Normal View History

2021-05-23 18:56:49 -04:00
.container {
max-width: calc(126rem / 16);
2021-05-23 18:56:49 -04:00
display: flex;
flex-direction: column;
margin: 0;
}
.img {
2021-07-23 19:48:02 -04:00
width: 100%;
2021-05-23 18:56:49 -04:00
border-radius: 50%;
margin: 0 auto;
2021-07-03 16:44:21 -04:00
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(--blue-2);
2021-05-23 18:56:49 -04:00
}
.role {
font-weight: 600;
color: var(--purple-2);
}
2021-07-24 14:33:02 -04:00
@media only screen and (max-width: calc(768rem / 16)) {
.img {
width: calc(85rem / 16);
}
.caption {
font-size: calc(10rem / 16);
margin-top: 1rem;
}
}