46 lines
767 B
CSS
46 lines
767 B
CSS
|
|
/*********************/
|
||
|
|
/** jRating CSS **/
|
||
|
|
/*********************/
|
||
|
|
|
||
|
|
/**Div containing the color of the stars */
|
||
|
|
.jRatingAverage {
|
||
|
|
background-color:#f4c239;
|
||
|
|
position:relative;
|
||
|
|
top:0;
|
||
|
|
left:0;
|
||
|
|
z-index:2;
|
||
|
|
height:100%;
|
||
|
|
}
|
||
|
|
.jRatingColor {
|
||
|
|
background-color:#f4c239; /* bgcolor of the stars*/
|
||
|
|
position:relative;
|
||
|
|
top:0;
|
||
|
|
left:0;
|
||
|
|
z-index:2;
|
||
|
|
height:100%;
|
||
|
|
}
|
||
|
|
|
||
|
|
/** Div containing the stars **/
|
||
|
|
.jStar {
|
||
|
|
position:relative;
|
||
|
|
left:0;
|
||
|
|
z-index:3;
|
||
|
|
}
|
||
|
|
|
||
|
|
/** P containing the rate informations **/
|
||
|
|
p.jRatingInfos {
|
||
|
|
position:absolute;
|
||
|
|
z-index:9999;
|
||
|
|
border-radius: 5px;
|
||
|
|
background-color:#f4c239;
|
||
|
|
color: #FFF;
|
||
|
|
display: none;
|
||
|
|
width: 70px;
|
||
|
|
height: 24px;
|
||
|
|
font-size:16px;
|
||
|
|
text-align:center;
|
||
|
|
}
|
||
|
|
p.jRatingInfos span.maxRate {
|
||
|
|
color:#FFF;
|
||
|
|
font-size:14px;
|
||
|
|
}
|