2021-11-15 15:53:48 +00:00
|
|
|
|
/****** Style Star Rating Widget *****/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
.reviews-wrapper blockquote {
|
|
|
|
|
|
font-family: 'DM Serif Display', serif;
|
2021-11-15 15:54:24 +00:00
|
|
|
|
font-size: 2.4rem;
|
2021-11-15 15:53:48 +00:00
|
|
|
|
line-height: .9;
|
|
|
|
|
|
margin: 0 2rem;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.rating-wrapper {
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
gap: 1rem;
|
|
|
|
|
|
align-items: center;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2021-11-15 15:54:24 +00:00
|
|
|
|
.no-flexbox-gap .rating-wrapper > *:not(:last-child) {
|
|
|
|
|
|
margin-right: 1rem;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2021-11-15 15:53:48 +00:00
|
|
|
|
.reviews {
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
|
gap: 2rem
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2021-11-15 15:54:24 +00:00
|
|
|
|
.no-flexbox-gap .reviews > *:not(:last-child) {
|
|
|
|
|
|
margin-bottom: 2rem;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2021-11-15 15:53:48 +00:00
|
|
|
|
.review {
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.review__name {
|
|
|
|
|
|
align-self: flex-end;
|
|
|
|
|
|
margin-right: 6rem;
|
|
|
|
|
|
font-size: 1.5rem;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.review__name::before {
|
|
|
|
|
|
content: '⁓ ';
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.rating {
|
|
|
|
|
|
border: none;
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.rating>label:before {
|
|
|
|
|
|
margin: 0.3rem;
|
|
|
|
|
|
font-size: 1.25em;
|
|
|
|
|
|
font-family: FontAwesome;
|
|
|
|
|
|
display: inline-block;
|
|
|
|
|
|
content: "\f005";
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.rating>.half:before {
|
|
|
|
|
|
content: "\f089";
|
|
|
|
|
|
position: absolute;
|
|
|
|
|
|
color: var(--c-3);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.rating>label {
|
|
|
|
|
|
color: var(--c-3);
|
|
|
|
|
|
}
|