Created
October 16, 2019 06:24
-
-
Save shaikotahmed19/7c8afcaa176d174c58230426ed061a1c to your computer and use it in GitHub Desktop.
rating star
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
<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> |
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
.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