style.css
604 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
.star-container {
width: 100%;
height: 20px;
}
.star-negative, .star-positive {
width: 20px;
height: 20px;
background-repeat: no-repeat;
position: relative;
float: left;
cursor: pointer;
}
.star-negative {;
background-image: url('public/images/star-negative.png');
}
.star-positive {;
background-image: url('public/images/star-positive.png');
}
.star-hide {
display: none;
}
.star-rate-data {
width: 100%;
position: relative;
overflow: auto;
}
.star-profile-information, .star-rate-form {
position: relative;
float: left;
}
.star-rate-form {
margin-left: 15px;
}