1
0
mirror of https://github.com/bigchaindb/site.git synced 2024-12-24 18:36:11 +01:00
site/_src/_assets/styles/bigchain/_team.scss

51 lines
785 B
SCSS

//
// Team Unit
// ---
// bigchain.io
//
// Base class
.team {}
.team__image {
@extend .img--responsive;
background: $gray;
width: 230px;
clip-path: polygon(50% 0%, 90% 20%, 100% 60%, 75% 100%, 25% 100%, 0% 60%, 10% 20%);
}
.team__name {
@extend .h5;
color: $text-color;
margin-bottom: 0;
// the bottom line
&:after {
content: "";
height: 2px;
width: 3rem;
display: block;
margin: ($spacer / 2) auto;
background: $gray-lightest;
}
}
.team__position {
@extend .text-dimmed;
margin-bottom: ($spacer / 2);
}
.team__social {
margin-bottom: 0;
}
.team__social__link {
display: inline-block;
margin: 0 ($spacer / 4);
.icon {
fill: rgba($link-color, .4);
}
}