StarRate.css
938 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
.starRate__wrap{
width: 170px;
height:50px;
/*margin:50px auto 0;*/
text-align: center;
padding-left:50
/*border: 1px solid #ddd;*/
/*line-height: 30px;*/
}
.reset__btn{
display: inline-block;
margin-left: 12px;
height: 25px;
line-height: 3;
vertical-align: middle;
}
.star__rate{
background: url('../images/star-empty.svg');
width: 30px;
height: 29px;
background-size: 100%;
display: inline-block;
vertical-align: -7px;
margin:0 2px;
}
.star__rate.is-selected{
background: url('../images/star-full.svg');
width: 30px;
height: 29px;
background-size: 100%;
display: inline-block;
vertical-align: -7px;
margin:0 2px;
}
.star__rate.is-half-selected{
background: url('../images/star-half.svg');
width: 30px;
height: 29px;
background-size: 100%;
display: inline-block;
vertical-align: -7px;
margin:0 2px;
}