Austin Schuh | 76f227c | 2022-02-23 16:34:08 -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 | #targets, |
| 11 | #readouts, |
| 12 | #vision_readouts { |
| 13 | display: inline-block; |
| 14 | vertical-align: top; |
| 15 | float: right; |
| 16 | } |
| 17 | |
| 18 | #legend { |
| 19 | display: inline-block; |
| 20 | } |
| 21 | |
| 22 | #outer_target { |
| 23 | border: 1px solid black; |
| 24 | width: 140px; |
| 25 | background-color: white; |
| 26 | } |
| 27 | |
| 28 | #inner_target { |
| 29 | width: 60px; |
| 30 | height: 60px; |
| 31 | margin: 40px; |
| 32 | border: 1px solid black; |
| 33 | background-color: white; |
| 34 | } |
| 35 | |
| 36 | #outer_target.targetted, |
| 37 | #inner_target.targetted { |
| 38 | background-color: green; |
| 39 | } |
| 40 | |
| 41 | table, th, td { |
| 42 | border: 1px solid black; |
| 43 | border-collapse: collapse; |
| 44 | padding: 5px; |
| 45 | margin: 10px; |
| 46 | } |
| 47 | |
| 48 | th, td { |
| 49 | text-align: right; |
| 50 | width: 70px; |
| 51 | } |
| 52 | |
| 53 | td:first-child { |
| 54 | width: 150px; |
| 55 | } |
| 56 | |
| 57 | .near { |
| 58 | background-color: LightGreen; |
| 59 | border-radius: 10px; |
| 60 | } |
| 61 | |
| 62 | .zeroing { |
| 63 | background-color: yellow; |
| 64 | border-radius: 10px; |
| 65 | } |
| 66 | |
| 67 | .faulted { |
| 68 | background-color: red; |
| 69 | border-radius: 10px; |
| 70 | } |
| 71 | |
| 72 | #vision_readouts > div { |
| 73 | display: table-row; |
| 74 | padding: 5px; |
| 75 | } |
| 76 | |
| 77 | #vision_readouts > div > div { |
| 78 | display: table-cell; |
| 79 | padding: 5px; |
| 80 | text-align: right; |
| 81 | } |