Skip to content

Instantly share code, notes, and snippets.

@shaikotahmed19
Created October 16, 2019 06:24
Show Gist options
  • Save shaikotahmed19/7c8afcaa176d174c58230426ed061a1c to your computer and use it in GitHub Desktop.
Save shaikotahmed19/7c8afcaa176d174c58230426ed061a1c to your computer and use it in GitHub Desktop.
rating star
<ul class="stars">
<li class="star full"></li>
<li class="star full"></li>
<li class="star full"></li>
<li class="star half"></li>
<li class="star empty"></li>
</ul>
.stars .star {
height: 14px;
width: 14px;
display: inline-block;
color: #006937;
font-size: 40px;
line-height: 42px;
font-weight: 500;
position: relative;
margin-right: -1px;
}
.stars .star::after {
position: absolute;
left: 0;
top: 0;
height: 100%;
width: 100%;
font-size: 14px;
font-family: "Font Awesome 5 Free";
font-weight: 900;
content: "\f005";
}
.stars .star.empty:after {
content: "\f005";
font-weight: 400;
}
.stars .star.half:after {
content: "\f089";
}
.stars .star.full:after {
content: "\f005";
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment