cycat-project-website/_sass/pages/team/_team-summary.scss

50 lines
805 B
SCSS
Raw Normal View History

2018-12-09 08:21:01 +01:00
.team-summary {
display: flex;
flex-wrap: wrap;
flex-direction: row;
.team-image {
2020-08-23 12:01:06 +02:00
height: 60px;
width: 60px;
2018-12-09 08:21:01 +01:00
margin-right: 10px;
2020-08-23 12:01:06 +02:00
border-radius: 50%;
overflow: hidden;
2018-12-09 08:21:01 +01:00
img {
2020-08-23 12:01:06 +02:00
width: 60px;
2018-12-09 08:21:01 +01:00
}
}
.team-meta {
flex: 1;
h2 {
margin: 0;
2020-08-23 12:01:06 +02:00
font-size: 22px;
font-weight: normal;
2018-12-09 08:21:01 +01:00
}
p {
2020-08-23 12:01:06 +02:00
color: $black;
text-transform: uppercase;
2018-12-09 08:21:01 +01:00
margin: 0;
2020-08-23 12:01:06 +02:00
font-size: 12px;
font-weight: 500;
2018-12-09 08:21:01 +01:00
}
}
.team-content {
2020-08-23 12:01:06 +02:00
margin-top: 20px;
2018-12-09 08:21:01 +01:00
flex: 1 0 100%;
}
}
2020-08-23 12:01:06 +02:00
.team-summary-large {
background-color: $white-offset;
padding: 30px;
border-radius: 3px;
.team-image {
height: 90px;
width: 90px;
margin-right: 20px;
border-radius: 50%;
overflow: hidden;
img {
width: 90px;
}
}
}