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-10 03:05:55 +01:00
|
|
|
|
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: "";
|
2016-01-22 16:03:56 +01:00
|
|
|
height: 1px;
|
2016-01-10 02:11:27 +01:00
|
|
|
width: 3rem;
|
|
|
|
display: block;
|
|
|
|
margin: ($spacer / 2) auto;
|
2016-01-22 16:03:56 +01:00
|
|
|
background: $brand-main-blue-light;
|
2016-01-10 02:11:27 +01:00
|
|
|
}
|
2016-01-09 18:36:18 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.team__position {
|
|
|
|
@extend .text-dimmed;
|
2016-01-10 03:05:55 +01:00
|
|
|
margin-bottom: ($spacer / 2);
|
|
|
|
}
|
|
|
|
|
|
|
|
.team__social {
|
|
|
|
margin-bottom: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.team__social__link {
|
|
|
|
display: inline-block;
|
|
|
|
margin: 0 ($spacer / 4);
|
2016-01-30 13:34:11 +01:00
|
|
|
box-shadow: none;
|
|
|
|
|
|
|
|
&,
|
|
|
|
&:hover,
|
|
|
|
&:focus {
|
|
|
|
background: transparent;
|
|
|
|
}
|
2016-01-10 03:05:55 +01:00
|
|
|
|
|
|
|
.icon {
|
2016-01-30 13:34:11 +01:00
|
|
|
fill: $brand-primary;
|
2016-01-10 03:05:55 +01:00
|
|
|
}
|
2016-01-09 18:36:18 +01:00
|
|
|
}
|