-
Notifications
You must be signed in to change notification settings - Fork 0
/
light-mode.css
173 lines (142 loc) · 3.56 KB
/
light-mode.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
#topContainer {
background: linear-gradient(to bottom, rgba(145,200,255,1) 0%,rgba(96,171,248,1) 44%,rgba(64,150,238,1) 100%);
}
body {
background-color: #b7d3ee;
color: black;
}
#actions {
color: #111;
background: rgb(160,190,220);
border-top: solid thin #6080a0;
border-left: solid thin #6080a0;
}
.title {
color: white;
}
#awosTopContainer {
background-color: #e6f2fe;
}
.topNav {
background: linear-gradient(to bottom, rgba(64,150,238,1) 0%,rgba(96,171,248,1) 56%,rgba(145,200,255,1) 100%);
}
#awosTopMenu {
color: black;
box-shadow: inset 0px 10px 10px -9px rgba(36, 36, 36, 0.8);
}
#awosTopMenu td, th {
border: 0.5px solid gray;
}
#activeRunway, #utcTime, #ta, #trl, #atisId, #qnh, #td, #qfe {
color: black;
}
#metCond, #cb, #ts {
color: black;
}
#qnhDecimal, #qfe {
color: gray;
}
.st0{display:none;}
.st1{fill-rule:evenodd;clip-rule:evenodd;fill:#66C3D8;}
.st2{fill:#6D6A5B;}
.st3{fill:#845A3A;}
.st4{fill:#66452E;}
.st5{fill:#BC845E;}
.st6{fill:#231B16;}
.st7{fill-rule:evenodd;clip-rule:evenodd;}
.st8{fill-rule:evenodd;clip-rule:evenodd;fill:#2c2c2c;}
.st9{fill:#9E987D;}
.st10{fill:#757575;}
.st11{fill:#BCB596;}
.st12{fill:#b7d3ee;}
.st13{fill-rule:evenodd;clip-rule:evenodd;fill:#909B72;}
.st14{fill:#6C7254;}
.st15{fill-rule:evenodd;clip-rule:evenodd;fill:#484C3B;}
.st16{fill:#484C3B;}
.st17{fill:#17332B;}
.st18{fill:#FFFFFF;}
.st19{font-family:'Roboto-Regular';}
.st20{font-size:18px;}
.st21{fill:none;stroke:#000000;stroke-width:2;stroke-miterlimit:10;}
.maxWindHighlight {fill:#f3cd76;}
.variableHighlight {fill:#d1862f;}
.variableTextHighlight {fill:black;}
.topMenuHighlight {background-color: #e3bb73; box-shadow: inset 0px 10px 10px -9px rgba(36, 36, 36, 0.8);}
.noAtisHighlight {background-color: #e66464;}
footer {
background: linear-gradient(to bottom, #76bbff 0%, #60abf8 100%);
}
#compassDiv {
background-color: #d3dee8;
border: 0.5px gray solid;
background-image: url('images/compass.png');
}
.footerText {
color: white;
}
.footerText2 {
color: white;
}
.topNavButton {
border: 1px solid #4682B4;
color: white;
background-color: #80b0e0;
}
.topNavActive {
background: linear-gradient(to bottom, rgba(57,128,204,1) 0%,rgba(135,180,229,1) 100%);
}
#metarsTable {
border: 1px solid white;
}
#metarsTable th {
border: 1px solid white;
background-color: #e7eeee;
}
#metarsTable td {
border: 1px solid white;
background-color: #f0f0f5;
}
.tickLabel {
color: black;
}
/* weather forecast table */
.weatherTable {
width: 100%;
border-collapse: collapse;
background-color: #b7d3ee;
font-family: Arial, sans-serif;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
margin-bottom: 60px;
}
.weatherTable-head th {
text-align: center;
padding: 10px;
cursor: pointer;
border: 1px solid #4682B4;
color: white;
background-color: #80b0e0;
font-size: 10pt;
text-shadow: -1px -1px 5px rgba(40,40,40,0.6);
font-weight: 400;
}
.weatherTable-head th.clicked {
background: linear-gradient(to bottom, rgba(57,128,204,1) 0%,rgba(135,180,229,1) 100%);
}
.weatherTable-row {
text-align: center;
}
.weatherTable-row:nth-child(odd) {
background-color: #f7f7f7;
}
.weatherTable-row:hover {
background-color: #e6e6e6;
}
.weatherTable-body td {
width: 20%;
padding: px;
border-bottom: 0.5px solid #4682B4;
text-align: center; /* Optional: to center the content */
}
.weatherTable-body tr:first-child td {
border-bottom: 2px solid #60abf8; /* Thicker, blue bottom border for the first row */
}