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

36 lines
572 B
SCSS
Raw Normal View History

2016-01-09 18:36:18 +01:00
//
// Team Unit
// ---
// bigchain.io
//
// Base class
.team {}
.team__image {
@extend .img--responsive;
2016-01-10 02:11:27 +01:00
background: $gray;
2016-01-09 18:36:18 +01:00
width: 230px;
2016-01-10 02:11:27 +01:00
clip-path: polygon(50% 0%, 90% 20%, 100% 60%, 75% 100%, 25% 100%, 0% 60%, 10% 20%);
2016-01-09 18:36:18 +01:00
}
.team__name {
@extend .h5;
color: $text-color;
margin-bottom: 0;
2016-01-10 02:11:27 +01:00
// the bottom line
&:after {
content: "";
height: 2px;
width: 3rem;
display: block;
margin: ($spacer / 2) auto;
background: $gray-lightest;
}
2016-01-09 18:36:18 +01:00
}
.team__position {
@extend .text-dimmed;
}