37 lines
517 B
CSS
37 lines
517 B
CSS
div.gauge {
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
|
|
div.gauge span.integral-value {
|
|
font-size: 2.3rem;
|
|
font-family: monospace;
|
|
}
|
|
|
|
div.gauge span.decimal-value {
|
|
font-size: 1.6rem;
|
|
font-family: monospace;
|
|
}
|
|
|
|
div.gauge span.unit {
|
|
font-size: 1.6rem;
|
|
}
|
|
|
|
rect.gauge-bg {
|
|
fill: rgb(255,255,255);
|
|
stroke-width: 2;
|
|
stroke: rgb(0,0,0)
|
|
}
|
|
|
|
rect.gauge-bar {
|
|
fill: rgb(230,230,230);
|
|
stroke-width: 1;
|
|
stroke: rgb(180,180,180)
|
|
}
|
|
|
|
rect.gauge-bar.lit {
|
|
fill: rgb(180,180,180);
|
|
stroke-width: 1;
|
|
stroke: rgb(0,0,0)
|
|
}
|