feat(landing): add partners carousel

This commit is contained in:
Matthieu Bessat 2023-06-23 23:19:30 +02:00
parent c890ac388e
commit bbef275b3d
8 changed files with 160 additions and 10 deletions

View file

@ -167,3 +167,56 @@
}
}
.partner-comment__container {
height: 100%;
display: flex;
justify-content: center;
align-items: center;
background: rgba(1, 1, 1, 0.05);
.partner-comment {
padding-bottom: 1rem;
display: flex;
flex-direction: column;
align-items: center;
}
.partner-comment__quote {
width: 75%;
text-align: center;
margin: 3rem auto 0 auto;
position: relative;
display: block;
font-style: italic;
font-weight: 300;
&::before, &::after {
font-size: 8rem;
color: rgba(0, 0, 0, 0.2);
position: absolute;
}
&::before {
content: "";
top: -6rem;
}
&::after {
content: "";
right: -1rem;
bottom: -9rem;
}
}
.partner-comment__author {
margin-top: 1rem;
display: flex;
flex-direction: column;
align-items: center;
}
.partner-comment__author-picture {
width: 9rem;
aspect-ratio: 1;
// border-radius: 50%;
}
.partner-comment__author-name {
margin-top: .5rem;
}
}