OK, Figwheel requires webroot under resources. Bother.

Bother.
This commit is contained in:
Simon Brooke 2020-10-20 14:34:26 +01:00
parent 26a60fb1fe
commit ec9a0803f4
11 changed files with 29 additions and 690 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 646 B

File diff suppressed because it is too large Load diff

View file

@ -0,0 +1,69 @@
/***************************************************************************\
* *
* swinging-needle-meter.css *
* *
* CSS styling for the swinging needle meter itself. *
* *
\***************************************************************************/
.snm-cursor {
stroke:#ff8500;
stroke-width: 3%;
stroke-opacity: 0.5;
}
.snm-frame {
fill: none;
stroke-width: 5%;
stroke-linejoin: round;
stroke: #444444;
}
.snm-gradation path {
stroke: black;
stroke-width: 1;
}
.snm-gradation text {
font-size: 150%;
font-weight: lighter;
}
.snm-hub {
fill: #444444;
}
.snm-meter {
height: 50%;
width: auto;
}
.snm-needle {
stroke: black;
stroke-width: 1;
}
.snm-redzone {
fill:none;
stroke: maroon;
stroke-width: 10%;
}
.snm-scale {
fill: none;
stroke: green;
stroke-width: 10%;
}
.snm-target .snm-frame {
stroke: green;
}
.snm-value {
font-size: 200%;
text-align: center;
}
.snm-warning .snm-frame {
stroke: maroon;
}