mirror of
https://github.com/bigchaindb/site.git
synced 2024-11-01 15:55:36 +01:00
99 lines
1.8 KiB
SCSS
99 lines
1.8 KiB
SCSS
|
|
.testimonials {
|
|
margin-bottom: 0;
|
|
|
|
.grid__col {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
}
|
|
|
|
// intro animation
|
|
&.is-ready .grid__col {
|
|
&:nth-child(2) .testimonial { animation-delay: .3s; }
|
|
&:nth-child(3) .testimonial { animation-delay: .6s; }
|
|
}
|
|
}
|
|
|
|
.testimonial {
|
|
.is-ready & {
|
|
@extend .animation-slide-in-from-bottom;
|
|
animation-fill-mode: backwards;
|
|
}
|
|
}
|
|
|
|
.testimonial__quote {
|
|
// blockquote reset
|
|
margin: 0;
|
|
position: relative;
|
|
border: none;
|
|
color: $text-color;
|
|
padding: 0;
|
|
font-style: normal;
|
|
|
|
// styling
|
|
margin-bottom: $spacer;
|
|
align-self: flex-start;
|
|
|
|
// quote characters
|
|
&:before {
|
|
content: '“';
|
|
font-family: 'Avenir Next', Avenir, 'Helvetica Neue', Helvetica, Arial, sans-serif;
|
|
font-size: 250%;
|
|
color: $gray-light;
|
|
line-height: 1;
|
|
margin-left: -1rem;
|
|
}
|
|
}
|
|
|
|
.testimonial__caption {
|
|
align-self: flex-end;
|
|
display: flex;
|
|
align-items: center;
|
|
border-top: 2px solid $gray-light;
|
|
padding-top: $spacer;
|
|
position: relative;
|
|
|
|
// speech triangle
|
|
&:before {
|
|
content: '';
|
|
position: absolute;
|
|
width: 0;
|
|
height: 0;
|
|
border-style: solid;
|
|
left: 4rem;
|
|
top: 0;
|
|
border-width: .9rem .9rem 0 0;
|
|
border-color: transparent;
|
|
border-top-color: $gray-light;
|
|
}
|
|
}
|
|
|
|
.testimonial__avatar {
|
|
@extend .img--responsive;
|
|
width: 4rem;
|
|
height: 4rem;
|
|
display: inline-block;
|
|
margin-right: $spacer;
|
|
border-radius: 50%;
|
|
border: 2px solid $gray-light;
|
|
}
|
|
|
|
.testimonial__cite {
|
|
@extend .small;
|
|
font-style: normal;
|
|
flex: 1;
|
|
color: $text-color;
|
|
}
|
|
|
|
.testimonial__name {
|
|
font-weight: $font-weight-bold;
|
|
}
|
|
|
|
.testimonial__org {
|
|
display: block;
|
|
|
|
a {
|
|
box-shadow: none;
|
|
}
|
|
}
|