43 lines
565 B
SCSS
43 lines
565 B
SCSS
.personItem {
|
|
position: relative;
|
|
list-style: none;
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 1rem;
|
|
}
|
|
|
|
.image {
|
|
flex: none;
|
|
width: 7rem;
|
|
height: 7rem;
|
|
background: var(--color-placeholder);
|
|
border-radius: 100%;
|
|
}
|
|
|
|
.text {
|
|
padding: 0;
|
|
}
|
|
|
|
.name,
|
|
.role {
|
|
font-size: 1rem;
|
|
}
|
|
|
|
.role {
|
|
font-family: var(--font-serif);
|
|
}
|
|
|
|
.contact {
|
|
list-style: none;
|
|
margin: .6rem 0;
|
|
font-size: var(--font-size-caption);
|
|
font-weight: 500;
|
|
line-height: 1.7;
|
|
}
|
|
|
|
.icon {
|
|
display: inline-block;
|
|
width: 1rem;
|
|
text-align: center;
|
|
margin-right: .4rem;
|
|
} |