31 lines
493 B
SCSS
31 lines
493 B
SCSS
|
|
@use "hugo:vars" as v;
|
||
|
|
|
||
|
|
.team-member {
|
||
|
|
font-family: "Assistant";
|
||
|
|
font-size: 17px;
|
||
|
|
font-weight: 400;
|
||
|
|
display: flex;
|
||
|
|
align-items: center;
|
||
|
|
flex-direction: column;
|
||
|
|
padding: 0 20px;
|
||
|
|
margin-bottom: 2rem;
|
||
|
|
}
|
||
|
|
|
||
|
|
.team-member__photo {
|
||
|
|
width: 100%;
|
||
|
|
max-width: 300px;
|
||
|
|
aspect-ratio: 1;
|
||
|
|
border-radius: 50%;
|
||
|
|
background-color: lightblue;
|
||
|
|
}
|
||
|
|
|
||
|
|
.team-member__name {
|
||
|
|
font-weight: 700;
|
||
|
|
}
|
||
|
|
|
||
|
|
.team-member__education {
|
||
|
|
font-size: 13px;
|
||
|
|
font-variant: small-caps;
|
||
|
|
}
|
||
|
|
|
||
|
|
.team-member__pronoun {}
|