blob: fa2a70e57468f2832ced6ae9763d09db4f59919b (
plain)
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
|
.israted::before {
content: '';
display: inline-block;
width: 12px;
height: 12px;
background-size: contain;
background-position: center center;
background-repeat: no-repeat;
margin-right: 3px;
}
.job.rated .israted::before {
background-image: url('../img/check_hover.png');
}
.job.unrated .israted::before {
background-image: url('../img/check_blank.png');
}
.israted {
font-weight: bold;
}
.jobtitle a {
font-weight: normal;
font-style: italic;
}
.jobblurb {
text-align: center;
}
.ratingdata {
height: 32px;
}
.star {
height: 32px !important;
width: 32px !important;
}
.ratecomment {
margin: 1em 0 0 0;
padding: 1em;
background-color: #ffffff;
border-radius: 5px;
box-shadow: 0px 0px 4px rgba(0,0,0,0.75);
}
|