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 61 62 63 64 65 66 67 68 69
|
#cv_windows{
position:absolute;
background-color: #eee;
}
/* CPU consumption donut */
.cpu_container {
position: absolute;
top: 70px;
left: 240px;
}
.donut_value {
font-weight: bold;
position: absolute;
top: 32px;
left: 50%;
margin-left: -40px;
line-height: 30px;
color: #222;
width: 80px;
text-align: center;
font-size: 20px;
}
.donut_label {
font-size: 11px;
position: absolute;
top: 55px;
width: 100%;
text-align: center;
color: #222;
margin: 0;
text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
}
/* Memory consumption cylinders */
.cylinderContainer {
position: absolute;
top: 210px;
left: 205px;
}
.cylinderContainer div {
float: left;
margin-right: 5px;
}
.cylinderContainer div[name=cylinder_mem] {
}
.cylinderContainer div[name=cylinder_swap] {
}
.cylinderContainer canvas {
text-align: center;
margin: auto;
display: block;
}
.cylinderContainer span {
font-size: 10px;
color: #222;
margin: auto;
font-weight: bold;
text-align: center;
display: block;
}
|