Niko Sohmers | 3860f8a | 2024-01-12 21:05:19 -0800 | [diff] [blame] | 1 | .channel { |
| 2 | display: flex; |
| 3 | border-bottom: 1px solid; |
| 4 | font-size: 24px; |
| 5 | } |
| 6 | #field { |
| 7 | display: inline-block |
| 8 | } |
| 9 | |
| 10 | #readouts, |
| 11 | #middle_readouts |
| 12 | { |
| 13 | display: inline-block; |
| 14 | vertical-align: top; |
| 15 | float: right; |
| 16 | } |
| 17 | |
Niko Sohmers | 3860f8a | 2024-01-12 21:05:19 -0800 | [diff] [blame] | 18 | #legend { |
| 19 | display: inline-block; |
| 20 | } |
| 21 | |
| 22 | table, th, td { |
| 23 | border: 1px solid black; |
| 24 | border-collapse: collapse; |
| 25 | padding: 5px; |
| 26 | margin: 10px; |
Filip Kujawa | 1a2e9e0 | 2024-02-24 18:30:29 -0800 | [diff] [blame] | 27 | table-layout: fixed; |
Niko Sohmers | ed83b6b | 2024-03-02 20:05:19 -0800 | [diff] [blame] | 28 | width: 100%; |
Filip Kujawa | 1a2e9e0 | 2024-02-24 18:30:29 -0800 | [diff] [blame] | 29 | overflow: hidden; |
Niko Sohmers | 3860f8a | 2024-01-12 21:05:19 -0800 | [diff] [blame] | 30 | } |
| 31 | |
| 32 | th, td { |
Filip Kujawa | 1a2e9e0 | 2024-02-24 18:30:29 -0800 | [diff] [blame] | 33 | text-align: left; |
Niko Sohmers | 3860f8a | 2024-01-12 21:05:19 -0800 | [diff] [blame] | 34 | width: 70px; |
| 35 | } |
| 36 | |
Filip Kujawa | 1a2e9e0 | 2024-02-24 18:30:29 -0800 | [diff] [blame] | 37 | table:first-child { |
| 38 | text-align: center; |
| 39 | } |
| 40 | |
Niko Sohmers | 3860f8a | 2024-01-12 21:05:19 -0800 | [diff] [blame] | 41 | td:first-child { |
| 42 | width: 150px; |
| 43 | } |
| 44 | |
| 45 | .connected, .near { |
| 46 | background-color: LightGreen; |
| 47 | border-radius: 10px; |
| 48 | } |
| 49 | |
| 50 | .zeroing { |
| 51 | background-color: yellow; |
| 52 | border-radius: 10px; |
| 53 | } |
| 54 | |
| 55 | .faulted { |
| 56 | background-color: red; |
| 57 | border-radius: 10px; |
| 58 | } |
| 59 | |
| 60 | #vision_readouts > div { |
| 61 | display: table-row; |
| 62 | padding: 5px; |
| 63 | } |
| 64 | |
| 65 | #vision_readouts > div > div { |
| 66 | display: table-cell; |
| 67 | padding: 5px; |
Niko Sohmers | f1b9eb9 | 2024-03-03 15:30:07 -0800 | [diff] [blame] | 68 | text-align: left; |
| 69 | font: small; |
Niko Sohmers | 3860f8a | 2024-01-12 21:05:19 -0800 | [diff] [blame] | 70 | } |
| 71 | |
| 72 | #message_bridge_status > div { |
| 73 | display: table-row; |
| 74 | padding: 5px; |
| 75 | } |
| 76 | |
| 77 | #message_bridge_status > div > div { |
| 78 | display: table-cell; |
| 79 | padding: 5px; |
| 80 | text-align: right; |
Maxwell Henderson | 3d68e14 | 2024-02-25 09:58:11 -0800 | [diff] [blame] | 81 | } |
| 82 | |
| 83 | .channel { |
| 84 | display: flex; |
| 85 | border-bottom: 1px solid; |
| 86 | font-size: 24px; |
| 87 | } |
| 88 | |
| 89 | .aos_plot { |
| 90 | position: absolute; |
| 91 | width: 100%; |
| 92 | height: 100%; |
| 93 | box-sizing: border-box; |
| 94 | } |
| 95 | |
| 96 | .aos_plot_text { |
| 97 | position: absolute; |
| 98 | width: 100%; |
| 99 | height: 100%; |
| 100 | pointer-events: none; |
| 101 | } |
| 102 | |
| 103 | .aos_legend { |
| 104 | position: absolute; |
| 105 | z-index: 1; |
| 106 | pointer-events: none; |
| 107 | } |
| 108 | |
| 109 | .aos_legend_line { |
| 110 | background: white; |
| 111 | padding: 2px; |
| 112 | border-radius: 2px; |
| 113 | margin-top: 3px; |
| 114 | margin-bottom: 3px; |
| 115 | font-size: 12; |
| 116 | } |
| 117 | |
| 118 | .aos_legend_line>div { |
| 119 | display: inline-block; |
| 120 | vertical-align: middle; |
| 121 | margin-left: 5px; |
| 122 | } |
| 123 | .aos_legend_line>canvas { |
| 124 | vertical-align: middle; |
| 125 | pointer-events: all; |
| 126 | } |
| 127 | |
| 128 | .aos_legend_line_hidden { |
| 129 | filter: contrast(0.75); |
| 130 | } |
| 131 | |
| 132 | .aos_cpp_plot { |
| 133 | width: 100%; |
| 134 | display: flex; |
| 135 | flex-direction: column; |
| 136 | height: 100%; |
| 137 | align-items: flex-start; |
| 138 | } |
| 139 | |
| 140 | .aos_cpp_plot>div { |
| 141 | flex: 1; |
| 142 | width: 100%; |
| 143 | } |
Niko Sohmers | ed83b6b | 2024-03-02 20:05:19 -0800 | [diff] [blame] | 144 | |
Niko Sohmers | e92516c | 2024-03-23 18:40:30 -0700 | [diff] [blame] | 145 | #status_list > div { |
| 146 | display: table-row; |
| 147 | padding: 3px; |
| 148 | } |
| 149 | |
| 150 | #status_list > div > div { |
| 151 | display: table-cell; |
| 152 | padding: 10px; |
| 153 | text-align: left; |
| 154 | } |
| 155 | |
| 156 | |
| 157 | .yellow { |
| 158 | background-color: yellow; |
| 159 | } |
| 160 | |
| 161 | .yellowgreen { |
| 162 | background-color: yellowgreen; |
| 163 | } |
| 164 | |
| 165 | .lightgreen { |
Niko Sohmers | ed83b6b | 2024-03-02 20:05:19 -0800 | [diff] [blame] | 166 | background-color: LightGreen; |
| 167 | } |
| 168 | |
Niko Sohmers | e92516c | 2024-03-23 18:40:30 -0700 | [diff] [blame] | 169 | .lightcoral { |
| 170 | background-color: lightcoral; |
| 171 | } |
| 172 | |
| 173 | .red { |
Niko Sohmers | ed83b6b | 2024-03-02 20:05:19 -0800 | [diff] [blame] | 174 | background-color: red; |
| 175 | } |