-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.css
329 lines (282 loc) · 4.8 KB
/
index.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
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
html, body
{
margin: 0;
padding: 0;
height: 100%;
display: flex;
flex-direction: column;
font-family: 'sans';
font-size: 10pt;
}
#menubar
{
width: 100%;
height: 25px;
min-height: 25px;
background-image: linear-gradient(to bottom, #878e9e, #878e9e 38%, #636c7b 45%, #636c7b);
border-bottom: solid #2c2f36 2px;
}
#menubar a.button
{
padding: 5px 10px;
border-left: ridge #cecece 4px;
border-right: ridge #cecece 4px;
display: inline-block;
color: white;
text-decoration: none;
cursor: pointer;
}
#menubar a.button:hover {
text-decoration: underline;
}
#menubar .button1 {
background-image: linear-gradient(to bottom, #2f89d6, #3595df 25%, #1d76c1 30%, #0d3b66);
}
#menubar .button2 {
background-image: linear-gradient(to bottom, #9c9101, #a99e01 25%, #867d01 30%, #464100);
}
#splitter
{
height: 100%;
min-height: 95%;
display: flex;
flex-direction: row;
}
#treeContainer
{
flex-grow: 1;
overflow: hidden;
background-color: #0B111F;
}
#treePanArea
{
background-image: url('images/grid.png');
background-attachment: local;
width: 3400px;
height: 2000px;
position: relative;
}
#tree
{
position: absolute;
left: 850px;
top: 500px;
}
.treeNode {
position: absolute;
z-index: 1;
}
.treeNode .techicon
{
position: absolute;
top: 0px; left: 0px;
width: 40px;
height: 40px;
border-radius: 4px;
box-shadow: 2px 2px 3px rgba(0,0,0,0.7);
}
.treeNode span
{
position: absolute;
color: white;
background-color: #649C64;
width: 12px;
height: 12px;
border-radius: 50%;
border: solid white 1px;
font-size: 8pt;
text-align: center;
line-height: 14px;
left: -6px;
top: -6px;
}
#tree svg
{
position: absolute;
width: 1700px;
height: 1000px;
}
#tree svg g:not(.disabled) path {
stroke: #345006;
fill: none;
}
#tree svg g.disabled path {
stroke: #4c4c4c;
fill: none;
}
#tree svg marker#Regular path {
fill: #345006;
stroke: none;
}
#tree svg marker#Disabled path {
fill: #4c4c4c;
stroke: none;
}
#tree .techicon.active
{
border: solid #005d00 2px;
margin: -6px;
padding: 3px;
}
#info
{
background-color: #4E5359;
width: 300px;
min-width: 300px;
color: white;
overflow: auto;
padding: 70px 10px;
}
#info #title {
display: flex;
}
#info #title h3 {
margin: 5px 10px;
font-size: 10pt;
font-weight: normal;
color: orange;
}
#info #title .techicon
{
width: 60px;
height: 60px;
border-radius: 5px;
border: outset grey 1px;
box-shadow: 2px 2px 5px rgba(0,0,0,0.5);
}
#info p#description
{
font-size: 9pt;
height: 130px;
}
#info #partsList .tab
{
width: 65%;
border: outset #e6e6e6 2px;
border-bottom: 0;
padding: 5px 8px;
border-top-left-radius: 5px;
border-top-right-radius: 5px;
background-image: linear-gradient(to bottom, #747880 0%, #707480 50%, #565c67 55%, #34373e 100%);
}
#info #partsList ul {
border: inset grey 2px;
border-radius: 5px;
background-color: #5c626e;
margin-top: 0;
padding: 5px 5px 5px 25px;
height: 210px;
overflow: auto;
}
#info #partsList li {
margin: 3px 0;
}
#info #partsList a {
color: white;
text-decoration: none;
}
#info #partsList a:hover {
text-decoration: underline;
}
#info #partsList span {
color: orange;
font-size: smaller;
}
#info p#researchButton
{
text-align: center;
background: linear-gradient(to bottom, #2da6fe 0%, #29a7ff 50%, #0385e4 55%, #0f4a77) #3787CC;
padding: 10px;
margin: 10px;
border-radius: 3px;
border: outset grey 1px;
position: relative;
cursor: pointer;
}
#info p#researchButton::before {
content: '\269b';
position: absolute;
left: 0;
top: 0;
font-size: 42px;
line-height: 37px;
}
#info p#researchButton.disabled {
background: linear-gradient(to bottom, #909090 0%, #8F8F8F 50%, #6E6E6E 55%, #4B4B4B) #909090;
}
#info #requirements .requirement
{
margin: 5px 0;
display: flex;
align-items: center;
color: orange;
}
#info #requirements .requirement .techicon
{
width: 40px;
height: 40px;
margin-right: 10px;
border-radius: 4px;
box-shadow: 2px 2px 3px rgba(0,0,0,0.7);
}
#modal
{
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: rgba(128,128,128,0.8);
z-index: 100;
display: flex;
justify-content: center;
align-items: center;
}
#dialog
{
width: 600px;
height: 400px;
background-color: whitesmoke;
border: solid black 1px;
padding: 15px;
}
#dialog img
{
display: block;
margin: 0 auto;
}
#partTooltip
{
display: none;
position: absolute;
width: 320px;
right: 320px;
background-color: rgba(98,103,128,0.8);
padding: 10px;
border-radius: 3px;
border: outset #8C8C8C 1px;
}
#partTooltip .title {
margin: 0;
color: #ffef00;
}
#partTooltip ul
{
padding: 10px;
list-style: none;
background-color: rgba(90,100,128,0.7);
border-radius: 5px;
border: inset grey 1px;
}
#partTooltip li.standard {
color: #95D800;
}
#partTooltip li.extra {
color: #B8FFFF;
}
#partTooltip .partCosts
{
color: #ffef00;
display: flex;
justify-content: space-between;
}