blob: c2c44d24346e57eb798ec406493b4d247ab32749 [file] [log] [blame]
Maxwell Hendersonad312342023-01-10 12:07:47 -08001.channel {
2 display: flex;
3 border-bottom: 1px solid;
4 font-size: 24px;
5}
6#field {
7 display: inline-block
8}
9
Maxwell Hendersonad312342023-01-10 12:07:47 -080010#readouts,
James Kuszmaulf7b5d622023-03-11 15:14:53 -080011#middle_readouts
12{
Maxwell Hendersonad312342023-01-10 12:07:47 -080013 display: inline-block;
14 vertical-align: top;
15 float: right;
16}
17
James Kuszmaulf7b5d622023-03-11 15:14:53 -080018
Maxwell Hendersonad312342023-01-10 12:07:47 -080019#legend {
20 display: inline-block;
21}
22
Maxwell Hendersonad312342023-01-10 12:07:47 -080023table, th, td {
24 border: 1px solid black;
25 border-collapse: collapse;
26 padding: 5px;
27 margin: 10px;
28}
29
30th, td {
31 text-align: right;
32 width: 70px;
33}
34
35td:first-child {
36 width: 150px;
37}
38
James Kuszmaulf7b5d622023-03-11 15:14:53 -080039.connected, .near {
Maxwell Hendersonad312342023-01-10 12:07:47 -080040 background-color: LightGreen;
41 border-radius: 10px;
42}
43
44.zeroing {
45 background-color: yellow;
46 border-radius: 10px;
47}
48
49.faulted {
50 background-color: red;
51 border-radius: 10px;
52}
53
54#vision_readouts > div {
55 display: table-row;
56 padding: 5px;
57}
58
59#vision_readouts > div > div {
60 display: table-cell;
61 padding: 5px;
62 text-align: right;
63}
James Kuszmaulf7b5d622023-03-11 15:14:53 -080064
65#message_bridge_status > div {
66 display: table-row;
67 padding: 5px;
68}
69
70#message_bridge_status > div > div {
71 display: table-cell;
72 padding: 5px;
73 text-align: right;
74}