-
Notifications
You must be signed in to change notification settings - Fork 3
/
style.css
468 lines (368 loc) · 8.07 KB
/
style.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
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
/*reset*/
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
margin:0;
padding:0;
border:0;
outline:0;
vertical-align:baseline;
background:transparent;
}
body,html{
width:100%;
}
/*Header*/
header{
width:100%;
border-bottom:1px solid gray;
padding:0px;
}
header .main-title{
width:40%;
float:left;
}
header .main-title img{
width:100%;
}
#main{
margin-bottom:30px;
}
/*content*/
.content{
width:1335px;
background:transparent;
margin:0px auto; in addOns.js
//margin-top:30px;
}
@media only screen and (max-width:1300px){
.content{
width:90%;
}
}
/*menu*/
.menu{
display:block;
position:relative;
width:55%;
float:left;
}
.menu ul{
float:right;
padding-top:35px;
}
.menu li{
display:inline-block;
}
.menu li a{
display:block;
font-size:1.4em;
font-weight:500;
margin:5px 15px;
color:#000;
-webkit-transition: all 0.5s ease;
-moz-transition: all 0.5s ease;
-o-transition: all 0.5s ease;
transition: all 0.5s ease;
cursor:pointer;
}
.menu li a:hover {
padding-bottom:3px;
border-bottom:2px solid gray;
}
/*start stop buttons*/
.startstop{
padding-bottom:10px;
border-bottom:1px solid gray;
}
.startstop input, .arrayDiv input{
-webkit-box-shadow : 0px 0px 5px rgba(0,0,0,1.0);
-moz-box-shadow : 0px 0px 5px rgba(0,0,0,1.0);
box-shadow : 0px 0px 5px rgba(0,0,0,1.0);
font-size : 20px;
color : #ffffff;
padding : 10px 30px;
margin-right:20px;
background : -moz-linear-gradient(top, #053494 0%, #addbff 100%);
background : -webkit-linear-gradient(top, #053494 0%, #addbff 100%);
}
.startstop input:hover, .arrayDiv input:hover{
background : -moz-linear-gradient(top, #addbff 0%, #053494 100%);
background : -webkit-linear-gradient(top, #addbff 0%, #053494 100%);
cursor:pointer;
}
/*Explanation*/
.explanation{
width:100%;
height:240px;
margin:20px 0px;
padding-bottom:20px;
}
.explanation .node{
width:160px;
padding:5px;
float:left;
text-align:center;
-webkit-box-shadow : 0px 0px 15px rgba(0,0,0,1.0);
-moz-box-shadow : 0px 0px 15px rgba(0,0,0,1.0);
box-shadow : 0px 0px 15px rgba(0,0,0,1.0);
}
.explanation .node:nth-child(-n+7){
position:relative;
}
.explanation .node p{
width:99%;
font-size:1.3em;
}
.explanation .arrows{
width:50px;
float:left;
}
.arrow-right{
width: 0;
height: 0;
border-top: 30px solid transparent;
border-bottom: 30px solid transparent;
border-left: 30px solid green;
margin-left:10px;
}
.explanation .node img{
width:100%;
}
.explanation .node_event{
width:40%;
text-align:justify;
padding:15px;
float:left;
margin-left:3%;
-webkit-box-shadow : 0px 0px 15px rgba(0,0,0,1.0);
-moz-box-shadow : 0px 0px 15px rgba(0,0,0,1.0);
box-shadow : 0px 0px 15px rgba(0,0,0,1.0);
}
.explanation .node_event h1{
border-bottom:1px solid gray;
}
.explanation .node_event h2{
color:gray;
margin:5px;
}
.explanation .node_event p{
margin-left:10px;
margin-top:5px;
font-size:1.1em;
}
.explanation:nth-child(5) {
border-bottom:1px solid gray;
height:auto;
}
/*Parameters*/
.parameters{
margin:25px;
margin-top:50px;
position:relative;
}
.parameters #checkClick{
margin-top:15px;
}
.parameters .enter-param{
text-align:left;
width:100%;
padding:10px;
-webkit-box-shadow : 0px 0px 5px rgba(0,0,0,1.0);
-moz-box-shadow : 0px 0px 5px rgba(0,0,0,1.0);
box-shadow : 0px 0px 5px rgba(0,0,0,1.0);
}
.parameters .enter-param h2{
border-bottom:2px solid gray;
margin-bottom:10px;
padding-bottom:2px;
}
.parameters .enter-param .form_content{
margin-left:20px;
margin-bottom:20px;
}
.parameters .enter-param .form_content p{
margin-left:20px;
}
.parameters .enter-param #paramWarning{
font-size:1.4em;
float:left;
}
.parameters .enter-param input[type=text]{
width:60px;
background:transparent;
border:none;
font-size:20px;
margin:0px;
color:red;
}
.parameters .enter-param form{
}
.parameters .enter-param form p{
font-size:22px;
}
.parameters .enter-param form #onFastSecond{
position:relative;
left:-35px;
}
.parameters .enter-param span{
position:relative;
left:-6px;
}
.parameters .enter-param .spanAnd{
position:relative;
left:-45px;
}
.parameters .enter-param .spanOff{
position:relative;
left:-35px;
}
.parameters #SubmitValue{
float:right;
-webkit-box-shadow : 0px 0px 5px rgba(0,0,0,1.0);
-moz-box-shadow : 0px 0px 5px rgba(0,0,0,1.0);
box-shadow : 0px 0px 5px rgba(0,0,0,1.0);
font-size : 20px;
color : #ffffff;
padding : 5px 10px;
background : -moz-linear-gradient(top, #053494 0%, #addbff 100%);
background : -webkit-linear-gradient(top, #053494 0%, #addbff 100%);
cursor:pointer;
margin-bottom:-5px;
}
/*Show values changed*/
.parameters input{margin-right:30px;margin-bottom:15px;}
.parameters .parametersBar{margin-top:35px; margin-bottom:15px; box-shadow: 5px 5px 15px #888888;-webkit-box-shadow: 5px 5px 25px #888888; padding:20px;}
.parameters .showParam {float:left;margin-top:0px;}
.parameters .showParam h3{width:280px; font-size:1.3em; font-weight:normal; line-height:30px;}
.parameters .showParam h3 span{background:#ffffff; padding:2px 5px;}
.parameters .showParam .showParamFix{width:200px; margin-left:40px}
.parameters .showParam .showParamFix_2{width:350px;}
/*Graphs*/
.content .graph{
}
.content .graph h2{
text-decoration:underline;
margin-bottom:40px;
}
.content .canvasDiv{
width:100%;
overflow:auto;
}
.canvas_group_1 {
width:100%;
}
.canvas_group_1 .canvas_in{
width:1200px;
margin: 0 auto;
margin-left: 0px;
}
.canvas_group_1 .canvas_space{
float:right;
}
#variance_graph, #main_graph{
display: block;
background-color: #000;
margin-bottom:20px;
}
/*Graph Titles*/
.graphTitles{
color:white; font-family:Arial, Helvetica, sans-serif;font-weight:bold; font-size:17px;
background-color:#000; padding:10px; margin-top:0px; margin-bottom:0px; border-bottom:1px solid #ffffff; width:1280px;
}
.graphTitles_2{
position:absolute;z-index:9999;color:white; font-family:Arial, Helvetica, sans-serif;font-weight:bold; font-size:17px;
margin-top:5px; margin-left:5px;
}
.arrayDiv{
background : -moz-linear-gradient(top, #053494 0%, #addbff 100%);
background : -webkit-linear-gradient(top, #053494 0%, #addbff 100%);
padding:10px;
}
#hideButton, #showButton{
position:relative;
left:70%;
top:-20px;
padding:2px 10px;
background : -moz-linear-gradient(top, #000 0%, #ffffff 100%);
background : -webkit-linear-gradient(top, #000 0%, #ffffff 100%);
color:#ffffff;
font-weight:bold;
letter-spacing:2px;
cursor:pointer;
}
#hideButton:hover, #showButton:hover{
background : -moz-linear-gradient(top, #ffffff 0%, #000 100%);
background : -webkit-linear-gradient(top, #ffffff 0%, #000 100%);
}
#showButton{
display:none;
}
.scrollPage {
width:98%;
height:300px;
overflow:auto;
padding:10px 30px;
padding-left:0px;
position:relative;
text-align:justify;
margin-bottom:150px;
}
.scrollPage .img_1{
float:left;
height:300px;
margin-right:15px;
}
.scrollPage .img_2{
display: block;
margin-left: auto;
margin-right: auto
}
#collectData{
position:absolute;
z-index:99999;
top:200px;
right:100px;
width:35%;
box-shadow: 5px 5px 15px #888888;
-webkit-box-shadow: 5px 5px 25px #888888;
background : -moz-linear-gradient(top, #053494 0%, #addbff 100%);
background : -webkit-linear-gradient(top, #053494 0%, #addbff 100%);
color:#000;
padding:10px 20px;
display:none;
}
#collectData input{
padding:10px 30px;
font-size:18px;
float:right;
cursor:pointer;
text-align:left;
}
/*explanation*/
.clearfix:after {
content: ".";
display: block;
clear: both;
visibility: hidden;
line-height: 0;
height: 0;
}
.clearfix {
display: inline-block;
}
html[xmlns] .clearfix {
display: block;
}
* html .clearfix {
height: 1%;
}