Skip to content

Instantly share code, notes, and snippets.

@peterkarn
Created October 9, 2021 11:56
Show Gist options
  • Save peterkarn/a1301301e6d6e964897b484877d1649b to your computer and use it in GitHub Desktop.
Save peterkarn/a1301301e6d6e964897b484877d1649b to your computer and use it in GitHub Desktop.
:root {
--star-size: 15px;
--star-color: #8f8e8e62;
--star-background: #fc0;
}
.star-rating {
--percent: calc(var(--rating) / 5 * 100%);
display: inline-block;
font-size: var(--star-size);
font-family: Times; // make sure ★ appears correctly
line-height: 1;
&::before {
content: '★★★★★';
letter-spacing: 3px;
background: linear-gradient(90deg, var(--star-background) var(--percent), var(--star-color) var(--percent));
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
}
<div class="product-details__rating star-rating" style="--rating: 4.2;">
<span data-views="1234"> &nbspпросмотров </span>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment