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 49 50 51 52 53 54 55 56 57 58 59 60
|
.perfometer {
padding: 0;
width: 120px;
max-height : 19px;
min-width : 120px;
text-align: center;
border: none;
background: white;
}
.perfometer img.glow {
position: relative;
top: 1px;
width: 120px;
height: 18px;
z-index: 2;
}
.perfometer div.text {
position: relative;
top: 2px;
width: 120px;
height: 0px;
z-index: 3;
}
.perfometer div.graph {
position: relative;
left: 1px;
height: 0px;
}
.perfometer table{
/*padding-top: 2px;*/
width: 120px;
border: none;
height: 18px;
max-height: 18px;
border-radius: 3px;
}
.perfometer tbody{
border: none;
padding-top: 20px;
}
.perfometer td {
padding: 0;
border: none;
border-bottom : none;
border-right : none;
height: 19px;
}
|