|
.rating .star {
width: 20px;
height:20px;
cursor: pointer;
background-color: #ccc;
-webkit-mask: url("/js/ratingpng/01.png") no-repeat center;
mask: url("/js/ratingpng/01.png") no-repeat center;
-webkit-mask-size: cover;
mask-size: cover;
background-clip: content-box;
}
.rating .star.full {
background-color: gold;
}
.rating .star.half {
background: linear-gradient(-90deg, gold 50%, #ccc 50%);
}
.rating {
display: inline-flex;
gap: 4px;
}
|