Created
October 9, 2021 11:56
-
-
Save peterkarn/a1301301e6d6e964897b484877d1649b to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
: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; | |
} | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div class="product-details__rating star-rating" style="--rating: 4.2;"> | |
<span data-views="1234">  просмотров </span> | |
</div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment