mirror of
https://github.com/ConnectedHumber/Air-Quality-Web
synced 2024-11-22 06:23:01 +00:00
[client] Prettyificate the marker content even moar
This commit is contained in:
parent
44d818e3fb
commit
187c0c8bce
2 changed files with 13 additions and 3 deletions
|
@ -51,6 +51,16 @@ main {
|
|||
font-size: 80%;
|
||||
color: hsl(230, 45%, 65%);
|
||||
}
|
||||
.device-property-list {
|
||||
margin: 0; padding: 0 0 0 1em;
|
||||
.device-property-table {
|
||||
border-collapse: collapse;
|
||||
}
|
||||
.device-property-table tr:nth-child(odd) {
|
||||
background: hsla(222, 100%, 70%, 0.25);
|
||||
}
|
||||
.device-property-table th {
|
||||
padding-right: 2em;
|
||||
}
|
||||
.device-property-table td:nth-child(2) {
|
||||
border-left: 0.2em solid hsl(222, 100%, 59%);
|
||||
padding-left: 0.5em;
|
||||
}
|
||||
|
|
|
@ -102,7 +102,7 @@ class LayerDeviceMarkers {
|
|||
CreateElement("td.value", value)
|
||||
));
|
||||
}
|
||||
result.appendChild(CreateElement("table.device-property-list", ...info_list));
|
||||
result.appendChild(CreateElement("table.device-property-table", ...info_list));
|
||||
|
||||
result.appendChild(CreateElement("p.device-notes",
|
||||
CreateElement("em", device_info.other)
|
||||
|
|
Loading…
Reference in a new issue