32 lines
586 B
SCSS
32 lines
586 B
SCSS
.team-member-top {
|
|
background-size: cover;
|
|
background-position: center center;
|
|
color: $c-white;
|
|
height: 784px;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
|
|
h1 {
|
|
margin: 0;
|
|
}
|
|
}
|
|
|
|
.team-member {
|
|
margin-top: -197px;
|
|
|
|
.team-member-intro-bar {
|
|
background-color: $c-navy;
|
|
color: $c-white;
|
|
display: flex;
|
|
height: 394px;
|
|
justify-content: space-between;
|
|
|
|
img {
|
|
height: 100%;
|
|
display: block;
|
|
border-right: 160px solid $c-tan;
|
|
}
|
|
}
|
|
}
|