emhass 0.13.0__py3-none-any.whl → 0.13.2__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- emhass/__init__.py +0 -0
- emhass/command_line.py +1891 -0
- emhass/data/associations.csv +71 -0
- emhass/data/cec_inverters.pbz2 +0 -0
- emhass/data/cec_modules.pbz2 +0 -0
- emhass/data/config_defaults.json +128 -0
- emhass/forecast.py +1768 -0
- emhass/img/emhass_icon.png +0 -0
- emhass/machine_learning_forecaster.py +386 -0
- emhass/machine_learning_regressor.py +245 -0
- emhass/optimization.py +1548 -0
- emhass/retrieve_hass.py +712 -0
- emhass/static/advanced.html +36 -0
- emhass/static/basic.html +14 -0
- emhass/static/configuration_list.html +48 -0
- emhass/static/configuration_script.js +888 -0
- emhass/static/data/param_definitions.json +482 -0
- emhass/static/img/emhass_icon.png +0 -0
- emhass/static/img/emhass_logo_short.svg +544 -0
- emhass/static/img/feather-sprite.svg +1 -0
- emhass/static/script.js +443 -0
- emhass/static/style.css +1373 -0
- emhass/templates/configuration.html +75 -0
- emhass/templates/index.html +77 -0
- emhass/templates/template.html +5 -0
- emhass/utils.py +1764 -0
- emhass/web_server.py +753 -0
- {emhass-0.13.0.dist-info → emhass-0.13.2.dist-info}/METADATA +13 -4
- emhass-0.13.2.dist-info/RECORD +32 -0
- emhass-0.13.0.dist-info/RECORD +0 -5
- {emhass-0.13.0.dist-info → emhass-0.13.2.dist-info}/WHEEL +0 -0
- {emhass-0.13.0.dist-info → emhass-0.13.2.dist-info}/entry_points.txt +0 -0
- {emhass-0.13.0.dist-info → emhass-0.13.2.dist-info}/licenses/LICENSE +0 -0
emhass/static/style.css
ADDED
@@ -0,0 +1,1373 @@
|
|
1
|
+
/*! EMHASS Style Sheet */
|
2
|
+
/*! style.css v1.0.0 (modified version) | ISC License | https://github.com/ungoldman/style.css */
|
3
|
+
|
4
|
+
/* color reference css */
|
5
|
+
.light {
|
6
|
+
color: darkblue;
|
7
|
+
color: #ccf3ff;
|
8
|
+
color: white;
|
9
|
+
color: #e1e1e1;
|
10
|
+
color: silver;
|
11
|
+
color: #7d7d7d;
|
12
|
+
color: #3d3d3d;
|
13
|
+
color: #111111;
|
14
|
+
}
|
15
|
+
|
16
|
+
|
17
|
+
.dark {
|
18
|
+
color: #ccf3ff;
|
19
|
+
color: #e1e1e1;
|
20
|
+
color: silver;
|
21
|
+
color: #7d7d7d;
|
22
|
+
color: #3f3f3f;
|
23
|
+
color: #282928;
|
24
|
+
color: #181818;
|
25
|
+
color: #111111;
|
26
|
+
}
|
27
|
+
|
28
|
+
/* -------------- */
|
29
|
+
|
30
|
+
/* Base (modified) ungoldman style */
|
31
|
+
html {
|
32
|
+
color: #3d3d3d;
|
33
|
+
background-color: white;
|
34
|
+
box-sizing: border-box;
|
35
|
+
font-family: Roboto, Noto, Noto Sans, sans-serif;
|
36
|
+
font-size: calc(14px + 0.25vw);
|
37
|
+
line-height: 1.55;
|
38
|
+
-webkit-font-kerning: normal;
|
39
|
+
font-kerning: normal;
|
40
|
+
text-rendering: optimizeLegibility;
|
41
|
+
-webkit-font-feature-settings: "kern", "liga" 1, "calt" 0;
|
42
|
+
font-feature-settings: "kern", "liga" 1, "calt" 0;
|
43
|
+
-ms-text-size-adjust: 100%;
|
44
|
+
-webkit-text-size-adjust: 100%;
|
45
|
+
overflow-x: hidden;
|
46
|
+
}
|
47
|
+
|
48
|
+
body {
|
49
|
+
margin: 0 auto;
|
50
|
+
}
|
51
|
+
|
52
|
+
article,
|
53
|
+
aside,
|
54
|
+
footer,
|
55
|
+
header,
|
56
|
+
nav,
|
57
|
+
section,
|
58
|
+
figcaption,
|
59
|
+
figure,
|
60
|
+
main {
|
61
|
+
display: block;
|
62
|
+
}
|
63
|
+
|
64
|
+
*,
|
65
|
+
*::before,
|
66
|
+
*::after {
|
67
|
+
box-sizing: inherit;
|
68
|
+
}
|
69
|
+
|
70
|
+
p,
|
71
|
+
blockquote,
|
72
|
+
ul,
|
73
|
+
ol,
|
74
|
+
dl,
|
75
|
+
table,
|
76
|
+
pre {
|
77
|
+
margin-top: 0;
|
78
|
+
margin-bottom: 1.22em;
|
79
|
+
}
|
80
|
+
|
81
|
+
small {
|
82
|
+
font-size: 80%;
|
83
|
+
}
|
84
|
+
|
85
|
+
h1,
|
86
|
+
h2,
|
87
|
+
h3,
|
88
|
+
h4,
|
89
|
+
h5,
|
90
|
+
h6 {
|
91
|
+
font-weight: 500;
|
92
|
+
line-height: 1.25em;
|
93
|
+
margin-bottom: 1.25rem;
|
94
|
+
margin-top: 2rem;
|
95
|
+
position: relative;
|
96
|
+
}
|
97
|
+
|
98
|
+
h1 small,
|
99
|
+
h2 small,
|
100
|
+
h3 small,
|
101
|
+
h4 small,
|
102
|
+
h5 small,
|
103
|
+
h6 small {
|
104
|
+
color: #7d7d7d;
|
105
|
+
font-size: 0.7em;
|
106
|
+
font-weight: 300;
|
107
|
+
}
|
108
|
+
|
109
|
+
h1 code,
|
110
|
+
h2 code,
|
111
|
+
h3 code,
|
112
|
+
h4 code,
|
113
|
+
h5 code,
|
114
|
+
h6 code {
|
115
|
+
font-size: 0.9em;
|
116
|
+
}
|
117
|
+
|
118
|
+
h1 {
|
119
|
+
font-size: 2.75em;
|
120
|
+
}
|
121
|
+
|
122
|
+
h2 {
|
123
|
+
font-size: 2.25em;
|
124
|
+
}
|
125
|
+
|
126
|
+
h3 {
|
127
|
+
font-size: 1.75em;
|
128
|
+
}
|
129
|
+
|
130
|
+
h4 {
|
131
|
+
font-size: 1.5em;
|
132
|
+
}
|
133
|
+
|
134
|
+
h5 {
|
135
|
+
font-size: 1.25em;
|
136
|
+
}
|
137
|
+
|
138
|
+
h6 {
|
139
|
+
font-size: 1.15em;
|
140
|
+
/* color: #575757; */
|
141
|
+
}
|
142
|
+
|
143
|
+
p {
|
144
|
+
letter-spacing: -0.01em;
|
145
|
+
}
|
146
|
+
|
147
|
+
a {
|
148
|
+
background-color: transparent;
|
149
|
+
-webkit-text-decoration-skip: objects;
|
150
|
+
color: darkblue;
|
151
|
+
text-decoration: none;
|
152
|
+
}
|
153
|
+
|
154
|
+
a:hover {
|
155
|
+
color: #251fe3;
|
156
|
+
}
|
157
|
+
|
158
|
+
a:active {
|
159
|
+
color: #070f71;
|
160
|
+
}
|
161
|
+
|
162
|
+
|
163
|
+
a:active,
|
164
|
+
a:hover {
|
165
|
+
outline-width: 0;
|
166
|
+
outline: 0;
|
167
|
+
}
|
168
|
+
|
169
|
+
a:active,
|
170
|
+
a:focus,
|
171
|
+
a:hover {
|
172
|
+
text-decoration: underline;
|
173
|
+
}
|
174
|
+
|
175
|
+
ul,
|
176
|
+
ol {
|
177
|
+
padding: 0;
|
178
|
+
padding-left: 2em;
|
179
|
+
}
|
180
|
+
|
181
|
+
ul ol,
|
182
|
+
ol ol {
|
183
|
+
list-style-type: lower-roman;
|
184
|
+
}
|
185
|
+
|
186
|
+
ul ul,
|
187
|
+
ul ol,
|
188
|
+
ol ul,
|
189
|
+
ol ol {
|
190
|
+
margin-top: 0;
|
191
|
+
margin-bottom: 0;
|
192
|
+
}
|
193
|
+
|
194
|
+
ul ul ol,
|
195
|
+
ul ol ol,
|
196
|
+
ol ul ol,
|
197
|
+
ol ol ol {
|
198
|
+
list-style-type: lower-alpha;
|
199
|
+
}
|
200
|
+
|
201
|
+
li>p {
|
202
|
+
margin-top: 1em;
|
203
|
+
}
|
204
|
+
|
205
|
+
blockquote {
|
206
|
+
margin: 0 0 1rem;
|
207
|
+
padding: 0 1rem;
|
208
|
+
color: #7d7d7d;
|
209
|
+
border-left: 4px solid silver;
|
210
|
+
}
|
211
|
+
|
212
|
+
blockquote> :first-child {
|
213
|
+
margin-top: 0;
|
214
|
+
}
|
215
|
+
|
216
|
+
blockquote> :last-child {
|
217
|
+
margin-bottom: 0;
|
218
|
+
}
|
219
|
+
|
220
|
+
padding b,
|
221
|
+
strong {
|
222
|
+
font-weight: inherit;
|
223
|
+
font-weight: 600;
|
224
|
+
}
|
225
|
+
|
226
|
+
mark {
|
227
|
+
background-color: darkblue;
|
228
|
+
color: #3d3d3d;
|
229
|
+
}
|
230
|
+
|
231
|
+
sub,
|
232
|
+
sup {
|
233
|
+
font-size: 75%;
|
234
|
+
line-height: 0;
|
235
|
+
position: relative;
|
236
|
+
vertical-align: baseline;
|
237
|
+
}
|
238
|
+
|
239
|
+
sub {
|
240
|
+
bottom: -0.25em;
|
241
|
+
}
|
242
|
+
|
243
|
+
sup {
|
244
|
+
top: -0.5em;
|
245
|
+
}
|
246
|
+
|
247
|
+
code,
|
248
|
+
pre,
|
249
|
+
kbd,
|
250
|
+
samp {
|
251
|
+
font-family: Roboto, Noto, Noto Sans, sans-serif;
|
252
|
+
font-size: 90%;
|
253
|
+
}
|
254
|
+
|
255
|
+
pre,
|
256
|
+
code {
|
257
|
+
background-color: silver;
|
258
|
+
border-radius: 7px;
|
259
|
+
}
|
260
|
+
|
261
|
+
pre {
|
262
|
+
overflow: auto;
|
263
|
+
word-wrap: normal;
|
264
|
+
padding: 1em;
|
265
|
+
line-height: 1.45;
|
266
|
+
}
|
267
|
+
|
268
|
+
pre code {
|
269
|
+
background: transparent;
|
270
|
+
display: inline;
|
271
|
+
padding: 0;
|
272
|
+
line-height: inherit;
|
273
|
+
word-wrap: normal;
|
274
|
+
}
|
275
|
+
|
276
|
+
pre code::before,
|
277
|
+
pre code::after {
|
278
|
+
content: normal;
|
279
|
+
}
|
280
|
+
|
281
|
+
pre>code {
|
282
|
+
border: 0;
|
283
|
+
font-size: 1em;
|
284
|
+
white-space: pre;
|
285
|
+
word-break: normal;
|
286
|
+
}
|
287
|
+
|
288
|
+
code {
|
289
|
+
padding: 0.2em 0;
|
290
|
+
margin: 0;
|
291
|
+
}
|
292
|
+
|
293
|
+
code::before,
|
294
|
+
code::after {
|
295
|
+
letter-spacing: -0.2em;
|
296
|
+
content: "\00a0";
|
297
|
+
}
|
298
|
+
|
299
|
+
kbd {
|
300
|
+
background-color: silver;
|
301
|
+
background-image: linear-gradient(#ccf3ff, silver);
|
302
|
+
background-repeat: repeat-x;
|
303
|
+
border: 1px solid silver;
|
304
|
+
border-radius: 7px;
|
305
|
+
box-shadow: 0 1px 0 silver;
|
306
|
+
color: #3d3d3d;
|
307
|
+
display: inline-block;
|
308
|
+
line-height: 0.95em;
|
309
|
+
margin: 0 1px;
|
310
|
+
padding: 5px 5px 1px;
|
311
|
+
}
|
312
|
+
|
313
|
+
td,
|
314
|
+
th {
|
315
|
+
padding: 0;
|
316
|
+
}
|
317
|
+
|
318
|
+
hr {
|
319
|
+
box-sizing: content-box;
|
320
|
+
overflow: visible;
|
321
|
+
background: transparent;
|
322
|
+
height: 4px;
|
323
|
+
padding: 0;
|
324
|
+
margin: 1em 0;
|
325
|
+
background-color: silver;
|
326
|
+
border: 0 none;
|
327
|
+
}
|
328
|
+
|
329
|
+
hr::before {
|
330
|
+
display: table;
|
331
|
+
content: "";
|
332
|
+
}
|
333
|
+
|
334
|
+
hr::after {
|
335
|
+
display: table;
|
336
|
+
clear: both;
|
337
|
+
content: "";
|
338
|
+
}
|
339
|
+
|
340
|
+
img {
|
341
|
+
border-style: none;
|
342
|
+
border: 0;
|
343
|
+
max-width: 50%;
|
344
|
+
}
|
345
|
+
|
346
|
+
svg:not(:root) {
|
347
|
+
overflow: hidden;
|
348
|
+
}
|
349
|
+
|
350
|
+
figure {
|
351
|
+
margin: 1em 0;
|
352
|
+
}
|
353
|
+
|
354
|
+
figure img {
|
355
|
+
background: #e1e1e1;
|
356
|
+
border: 1px solid #c7c7c7;
|
357
|
+
padding: 0.25em;
|
358
|
+
}
|
359
|
+
|
360
|
+
figcaption {
|
361
|
+
font-style: italic;
|
362
|
+
font-size: 0.75em;
|
363
|
+
font-weight: 200;
|
364
|
+
margin: 0;
|
365
|
+
}
|
366
|
+
|
367
|
+
abbr[title] {
|
368
|
+
border-bottom: none;
|
369
|
+
text-decoration: underline;
|
370
|
+
text-decoration: underline dotted;
|
371
|
+
}
|
372
|
+
|
373
|
+
dfn {
|
374
|
+
font-style: italic;
|
375
|
+
}
|
376
|
+
|
377
|
+
dd {
|
378
|
+
margin-left: 0;
|
379
|
+
}
|
380
|
+
|
381
|
+
dl {
|
382
|
+
padding: 0;
|
383
|
+
}
|
384
|
+
|
385
|
+
dl dt {
|
386
|
+
padding: 0;
|
387
|
+
margin-top: 1em;
|
388
|
+
font-size: 1em;
|
389
|
+
font-style: italic;
|
390
|
+
font-weight: 600;
|
391
|
+
}
|
392
|
+
|
393
|
+
dl dd {
|
394
|
+
padding: 0 1em;
|
395
|
+
margin-bottom: 1.25em;
|
396
|
+
}
|
397
|
+
|
398
|
+
audio,
|
399
|
+
video {
|
400
|
+
display: inline-block;
|
401
|
+
}
|
402
|
+
|
403
|
+
audio:not([controls]) {
|
404
|
+
display: none;
|
405
|
+
height: 0;
|
406
|
+
}
|
407
|
+
|
408
|
+
input {
|
409
|
+
margin: 0;
|
410
|
+
}
|
411
|
+
|
412
|
+
h2 {
|
413
|
+
color: darkblue;
|
414
|
+
}
|
415
|
+
|
416
|
+
.text.adaptive {
|
417
|
+
color: #111111;
|
418
|
+
}
|
419
|
+
|
420
|
+
|
421
|
+
button:hover,
|
422
|
+
.alert:hover,
|
423
|
+
select:hover {
|
424
|
+
color: darkblue;
|
425
|
+
background-color: #e1e1e1;
|
426
|
+
}
|
427
|
+
|
428
|
+
button:active {
|
429
|
+
background-color: #d7d7db;
|
430
|
+
}
|
431
|
+
|
432
|
+
button,
|
433
|
+
input,
|
434
|
+
optgroup,
|
435
|
+
select,
|
436
|
+
textarea {
|
437
|
+
font-family: sans-serif;
|
438
|
+
font-size: 100%;
|
439
|
+
line-height: 1.15;
|
440
|
+
margin: 0;
|
441
|
+
}
|
442
|
+
|
443
|
+
button,
|
444
|
+
input {
|
445
|
+
overflow: visible;
|
446
|
+
}
|
447
|
+
|
448
|
+
|
449
|
+
button,
|
450
|
+
html [type="button"],
|
451
|
+
[type="reset"],
|
452
|
+
[type="submit"] {
|
453
|
+
-webkit-appearance: button;
|
454
|
+
}
|
455
|
+
|
456
|
+
button::-moz-focus-inner,
|
457
|
+
[type="button"]::-moz-focus-inner,
|
458
|
+
[type="reset"]::-moz-focus-inner,
|
459
|
+
[type="submit"]::-moz-focus-inner {
|
460
|
+
border-style: none;
|
461
|
+
padding: 0;
|
462
|
+
}
|
463
|
+
|
464
|
+
button:-moz-focusring,
|
465
|
+
[type="button"]:-moz-focusring,
|
466
|
+
[type="reset"]:-moz-focusring,
|
467
|
+
[type="submit"]:-moz-focusring {
|
468
|
+
outline: 1px dotted ButtonText;
|
469
|
+
}
|
470
|
+
|
471
|
+
fieldset {
|
472
|
+
border: 1px solid #7d7d7d;
|
473
|
+
margin: 0 2px;
|
474
|
+
padding: 0.35em 0.625em 0.75em;
|
475
|
+
}
|
476
|
+
|
477
|
+
legend {
|
478
|
+
color: inherit;
|
479
|
+
display: table;
|
480
|
+
max-width: 100%;
|
481
|
+
padding: 0;
|
482
|
+
white-space: normal;
|
483
|
+
}
|
484
|
+
|
485
|
+
progress {
|
486
|
+
display: inline-block;
|
487
|
+
vertical-align: baseline;
|
488
|
+
}
|
489
|
+
|
490
|
+
textarea {
|
491
|
+
overflow: auto;
|
492
|
+
}
|
493
|
+
|
494
|
+
[type="checkbox"],
|
495
|
+
[type="radio"] {
|
496
|
+
padding: 0;
|
497
|
+
}
|
498
|
+
|
499
|
+
[type="number"]::-webkit-inner-spin-button,
|
500
|
+
[type="number"]::-webkit-outer-spin-button {
|
501
|
+
height: auto;
|
502
|
+
}
|
503
|
+
|
504
|
+
[type="search"] {
|
505
|
+
-webkit-appearance: textfield;
|
506
|
+
outline-offset: -2px;
|
507
|
+
}
|
508
|
+
|
509
|
+
[type="search"]::-webkit-search-cancel-button,
|
510
|
+
[type="search"]::-webkit-search-decoration {
|
511
|
+
-webkit-appearance: none;
|
512
|
+
}
|
513
|
+
|
514
|
+
[disabled] {
|
515
|
+
cursor: default;
|
516
|
+
}
|
517
|
+
|
518
|
+
::-webkit-file-upload-button {
|
519
|
+
-webkit-appearance: button;
|
520
|
+
font: inherit;
|
521
|
+
}
|
522
|
+
|
523
|
+
details,
|
524
|
+
menu {
|
525
|
+
display: block;
|
526
|
+
}
|
527
|
+
|
528
|
+
summary {
|
529
|
+
display: list-item;
|
530
|
+
}
|
531
|
+
|
532
|
+
canvas {
|
533
|
+
display: inline-block;
|
534
|
+
}
|
535
|
+
|
536
|
+
template {
|
537
|
+
display: none;
|
538
|
+
}
|
539
|
+
|
540
|
+
[hidden] {
|
541
|
+
display: none;
|
542
|
+
}
|
543
|
+
|
544
|
+
/* feather icons css
|
545
|
+
https://github.com/feathericons/feather */
|
546
|
+
.feather {
|
547
|
+
width: 27px !important;
|
548
|
+
height: 27px !important;
|
549
|
+
stroke: currentColor !important;
|
550
|
+
stroke-width: 2 !important;
|
551
|
+
stroke-linecap: round !important;
|
552
|
+
stroke-linejoin: round !important;
|
553
|
+
fill: none !important;
|
554
|
+
filter: drop-shadow(#282928 .2px .2px) !important;
|
555
|
+
-webkit-text-size-adjust: none !important;
|
556
|
+
-ms-text-size-adjust: none !important;
|
557
|
+
|
558
|
+
}
|
559
|
+
|
560
|
+
/* feather icons no background color */
|
561
|
+
#top-links a {
|
562
|
+
background: none !important;
|
563
|
+
}
|
564
|
+
|
565
|
+
/* -------------- */
|
566
|
+
|
567
|
+
/* EMHASS added style */
|
568
|
+
/* set rounded element radius */
|
569
|
+
button,
|
570
|
+
.main-svg,
|
571
|
+
.mystyle,
|
572
|
+
.alert,
|
573
|
+
.info,
|
574
|
+
.section-card,
|
575
|
+
select,
|
576
|
+
table {
|
577
|
+
border-radius: 7px;
|
578
|
+
/* overflow: visible; */
|
579
|
+
}
|
580
|
+
|
581
|
+
button,
|
582
|
+
.alert,
|
583
|
+
.info,
|
584
|
+
.section-card,
|
585
|
+
select {
|
586
|
+
text-transform: none;
|
587
|
+
border-width: 1px;
|
588
|
+
border-style: solid;
|
589
|
+
box-shadow: #3d3d3d 3px 3px;
|
590
|
+
}
|
591
|
+
|
592
|
+
|
593
|
+
.alert,
|
594
|
+
.info {
|
595
|
+
max-width: 50%;
|
596
|
+
}
|
597
|
+
|
598
|
+
.info {
|
599
|
+
margin: 0 auto;
|
600
|
+
margin-top: 2em;
|
601
|
+
padding-top: 1em;
|
602
|
+
}
|
603
|
+
|
604
|
+
h2 {
|
605
|
+
margin-bottom: .3em;
|
606
|
+
margin-right: .3em;
|
607
|
+
margin-left: .3em;
|
608
|
+
}
|
609
|
+
|
610
|
+
.table_div h4 {
|
611
|
+
margin-top: .5em;
|
612
|
+
}
|
613
|
+
|
614
|
+
.info p {
|
615
|
+
line-height: 2em;
|
616
|
+
}
|
617
|
+
|
618
|
+
table {
|
619
|
+
max-width: 50%;
|
620
|
+
}
|
621
|
+
|
622
|
+
button {
|
623
|
+
padding: 10px;
|
624
|
+
margin: 0px;
|
625
|
+
}
|
626
|
+
|
627
|
+
.table_div {
|
628
|
+
/* margin: 15px 5px 0px 0px; */
|
629
|
+
margin: 15px 5px 0px 0px;
|
630
|
+
}
|
631
|
+
|
632
|
+
/* center align diagram/table and set overflow scroll*/
|
633
|
+
.plotly-graph-div,
|
634
|
+
.table_div {
|
635
|
+
overflow-x: auto !important;
|
636
|
+
margin: 0 auto;
|
637
|
+
margin-bottom: 10px;
|
638
|
+
animation-name: fadeInOpacity;
|
639
|
+
animation-iteration-count: 1;
|
640
|
+
animation-timing-function: ease-in-out;
|
641
|
+
animation-duration: .8s;
|
642
|
+
}
|
643
|
+
|
644
|
+
/* Set min size for diagrams */
|
645
|
+
.svg-container,
|
646
|
+
.table_div div {
|
647
|
+
min-width: 850px;
|
648
|
+
}
|
649
|
+
|
650
|
+
/* center align Table*/
|
651
|
+
.table_div table {
|
652
|
+
margin: 0 auto !important;
|
653
|
+
}
|
654
|
+
|
655
|
+
/* Diagram modbar styling */
|
656
|
+
.modebar-group {
|
657
|
+
float: right !important;
|
658
|
+
min-width: 0px !important;
|
659
|
+
}
|
660
|
+
|
661
|
+
.modebar-container,
|
662
|
+
.modebar {
|
663
|
+
width: 100% !important;
|
664
|
+
position: relative !important;
|
665
|
+
float: right !important;
|
666
|
+
}
|
667
|
+
|
668
|
+
/* */
|
669
|
+
|
670
|
+
.svg-container,
|
671
|
+
.main-svg,
|
672
|
+
.gl-container,
|
673
|
+
.modebar-container {
|
674
|
+
margin: 0 !important;
|
675
|
+
}
|
676
|
+
|
677
|
+
/* Special style for DataFrmae tables */
|
678
|
+
/* includes alternating gray and white with on-hover color */
|
679
|
+
.mystyle,
|
680
|
+
.main-svg {
|
681
|
+
font-size: 11pt;
|
682
|
+
font-family: Arial;
|
683
|
+
border-collapse: collapse;
|
684
|
+
border-style: hidden;
|
685
|
+
}
|
686
|
+
|
687
|
+
.mystyle td {
|
688
|
+
padding: 5px;
|
689
|
+
}
|
690
|
+
|
691
|
+
th {
|
692
|
+
padding: 5px 7.77px;
|
693
|
+
text-align: center;
|
694
|
+
}
|
695
|
+
|
696
|
+
.mystyle tr:nth-child(even) td,
|
697
|
+
th {
|
698
|
+
background: #e1e1e1;
|
699
|
+
}
|
700
|
+
|
701
|
+
.mystyle tr:nth-child(odd) td {
|
702
|
+
background: white;
|
703
|
+
}
|
704
|
+
|
705
|
+
.mystyle tr:hover td {
|
706
|
+
background-color: silver;
|
707
|
+
cursor: pointer;
|
708
|
+
}
|
709
|
+
|
710
|
+
th:last-child {
|
711
|
+
border-top-right-radius: 7px;
|
712
|
+
}
|
713
|
+
|
714
|
+
th:first-child {
|
715
|
+
border-top-left-radius: 7px;
|
716
|
+
}
|
717
|
+
|
718
|
+
tr:last-child td:first-child {
|
719
|
+
border-bottom-left-radius: 7px;
|
720
|
+
}
|
721
|
+
|
722
|
+
tr:last-child td:last-child {
|
723
|
+
border-bottom-right-radius: 7px;
|
724
|
+
}
|
725
|
+
|
726
|
+
tr:hover td:first-child {
|
727
|
+
border-top-left-radius: 7px;
|
728
|
+
border-bottom-left-radius: 7px;
|
729
|
+
}
|
730
|
+
|
731
|
+
tr:hover td:last-child {
|
732
|
+
border-top-right-radius: 7px;
|
733
|
+
border-bottom-right-radius: 7px;
|
734
|
+
}
|
735
|
+
|
736
|
+
#top-links {
|
737
|
+
display: flex;
|
738
|
+
position: absolute;
|
739
|
+
right: 13px;
|
740
|
+
top: 13px;
|
741
|
+
}
|
742
|
+
|
743
|
+
/* Post task status styling */
|
744
|
+
.loading-div {
|
745
|
+
display: flex;
|
746
|
+
margin: 0 auto;
|
747
|
+
align-items: center;
|
748
|
+
align-self: center;
|
749
|
+
max-width: fit-content;
|
750
|
+
}
|
751
|
+
|
752
|
+
.loading-div h4 {
|
753
|
+
margin-right: 13px;
|
754
|
+
}
|
755
|
+
|
756
|
+
/* #loader {
|
757
|
+
min-width: 3.5em;
|
758
|
+
min-height: 3.5em;
|
759
|
+
width: 3.5em;
|
760
|
+
height: 3.5em;
|
761
|
+
} */
|
762
|
+
|
763
|
+
.loading {
|
764
|
+
/* loading animation */
|
765
|
+
border: 16px solid silver;
|
766
|
+
border-radius: 50%;
|
767
|
+
border-top: 16px solid #00008b;
|
768
|
+
-webkit-animation: spin 2s linear infinite;
|
769
|
+
animation: spin 2s linear infinite;
|
770
|
+
vertical-align: text-top;
|
771
|
+
transition: 1s;
|
772
|
+
}
|
773
|
+
|
774
|
+
@-webkit-keyframes spin {
|
775
|
+
0% {
|
776
|
+
-webkit-transform: rotate(0deg);
|
777
|
+
}
|
778
|
+
|
779
|
+
100% {
|
780
|
+
-webkit-transform: rotate(360deg);
|
781
|
+
}
|
782
|
+
}
|
783
|
+
|
784
|
+
@keyframes spin {
|
785
|
+
0% {
|
786
|
+
transform: rotate(0deg);
|
787
|
+
}
|
788
|
+
|
789
|
+
100% {
|
790
|
+
transform: rotate(360deg);
|
791
|
+
}
|
792
|
+
}
|
793
|
+
|
794
|
+
.tick {
|
795
|
+
/* tick symbol */
|
796
|
+
color: #bfebbc;
|
797
|
+
vertical-align: text-top;
|
798
|
+
font-size: 4.0em;
|
799
|
+
animation-name: fadeInOpacity;
|
800
|
+
animation-iteration-count: 1;
|
801
|
+
animation-timing-function: ease-in-out;
|
802
|
+
animation-duration: .5s;
|
803
|
+
}
|
804
|
+
|
805
|
+
.cross {
|
806
|
+
/* cross symbol */
|
807
|
+
color: #e3b7b7;
|
808
|
+
vertical-align: text-top;
|
809
|
+
font-size: 4.0em;
|
810
|
+
animation-name: fadeInOpacity;
|
811
|
+
animation-iteration-count: 1;
|
812
|
+
animation-timing-function: ease-in-out;
|
813
|
+
animation-duration: .5s;
|
814
|
+
}
|
815
|
+
|
816
|
+
@-webkit-keyframes fadeInOpacity {
|
817
|
+
0% {
|
818
|
+
opacity: 0;
|
819
|
+
}
|
820
|
+
|
821
|
+
100% {
|
822
|
+
opacity: 1;
|
823
|
+
}
|
824
|
+
}
|
825
|
+
|
826
|
+
@keyframes fadeInOpacity {
|
827
|
+
0% {
|
828
|
+
opacity: 0;
|
829
|
+
}
|
830
|
+
|
831
|
+
100% {
|
832
|
+
opacity: 1;
|
833
|
+
}
|
834
|
+
}
|
835
|
+
|
836
|
+
/* Basic and Advanced fade transitions */
|
837
|
+
.TabSelection,
|
838
|
+
#advance,
|
839
|
+
#basic,
|
840
|
+
button,
|
841
|
+
select,
|
842
|
+
.info {
|
843
|
+
animation-name: fadeInOpacity;
|
844
|
+
animation-iteration-count: 1;
|
845
|
+
animation-timing-function: ease-in-out;
|
846
|
+
animation-duration: .3s;
|
847
|
+
}
|
848
|
+
|
849
|
+
.input-list,
|
850
|
+
.input-box {
|
851
|
+
animation-name: fadeInOpacity;
|
852
|
+
animation-iteration-count: 1;
|
853
|
+
animation-timing-function: ease-in-out;
|
854
|
+
animation-duration: .1s;
|
855
|
+
}
|
856
|
+
|
857
|
+
/* Alert box styling */
|
858
|
+
.alert {
|
859
|
+
display: box;
|
860
|
+
overflow-x: auto;
|
861
|
+
align-items: center;
|
862
|
+
align-self: center;
|
863
|
+
box-sizing: inherit;
|
864
|
+
margin: 0 auto;
|
865
|
+
margin-top: 35px;
|
866
|
+
transition: 0.3s;
|
867
|
+
}
|
868
|
+
|
869
|
+
.alert div {
|
870
|
+
display: flex;
|
871
|
+
margin: 0 auto;
|
872
|
+
width: fit-content;
|
873
|
+
height: fit-content;
|
874
|
+
animation-name: fadeInOpacity;
|
875
|
+
animation-iteration-count: 1;
|
876
|
+
animation-timing-function: ease-in-out;
|
877
|
+
animation-duration: .8s;
|
878
|
+
}
|
879
|
+
|
880
|
+
#alert-text {
|
881
|
+
white-space: pre-line;
|
882
|
+
padding-right: 35px;
|
883
|
+
transition: 0.3s;
|
884
|
+
}
|
885
|
+
|
886
|
+
.alert span {
|
887
|
+
color: #a71515;
|
888
|
+
font-weight: bold;
|
889
|
+
cursor: pointer;
|
890
|
+
transition: 0.3s;
|
891
|
+
font-size: calc(22px + 1.5vh);
|
892
|
+
margin: 35px;
|
893
|
+
}
|
894
|
+
|
895
|
+
/* Input box/List styling */
|
896
|
+
#input-container {
|
897
|
+
align-items: center;
|
898
|
+
display: grid;
|
899
|
+
}
|
900
|
+
|
901
|
+
.input-button-container {
|
902
|
+
align-items: center;
|
903
|
+
display: flex;
|
904
|
+
margin-bottom: 0.5rem;
|
905
|
+
}
|
906
|
+
|
907
|
+
.input-list,
|
908
|
+
#text-area {
|
909
|
+
display: flex;
|
910
|
+
align-items: center;
|
911
|
+
align-self: center;
|
912
|
+
box-sizing: inherit;
|
913
|
+
margin: 0 auto;
|
914
|
+
width: auto;
|
915
|
+
min-width: 50%;
|
916
|
+
max-width: 75%;
|
917
|
+
}
|
918
|
+
|
919
|
+
.input-buttons {
|
920
|
+
max-width: 50%;
|
921
|
+
display: flex;
|
922
|
+
align-items: "center";
|
923
|
+
align-self: center;
|
924
|
+
align-items: center;
|
925
|
+
box-sizing: inherit;
|
926
|
+
margin: 0 auto;
|
927
|
+
width: auto;
|
928
|
+
}
|
929
|
+
|
930
|
+
|
931
|
+
.input-buttons button,
|
932
|
+
.input-buttons select {
|
933
|
+
border-collapse: collapse;
|
934
|
+
border-radius: 7px;
|
935
|
+
border-style: solid;
|
936
|
+
line-height: 1.15;
|
937
|
+
width: 43px;
|
938
|
+
height: 43px;
|
939
|
+
margin-right: 0.5rem;
|
940
|
+
text-align: center;
|
941
|
+
}
|
942
|
+
|
943
|
+
#input-select,
|
944
|
+
#input-clear {
|
945
|
+
width: 77px;
|
946
|
+
}
|
947
|
+
|
948
|
+
|
949
|
+
.input-list input,
|
950
|
+
.input-box textarea,
|
951
|
+
#config-box {
|
952
|
+
border-collapse: collapse;
|
953
|
+
border-radius: 7px;
|
954
|
+
border-style: solid;
|
955
|
+
background-color: #e1e1e1;
|
956
|
+
border-color: silver;
|
957
|
+
color: #282928;
|
958
|
+
overflow-x: auto;
|
959
|
+
line-height: 1.15;
|
960
|
+
box-sizing: inherit;
|
961
|
+
padding: 8px;
|
962
|
+
}
|
963
|
+
|
964
|
+
.input-box {
|
965
|
+
min-width: 100%;
|
966
|
+
}
|
967
|
+
|
968
|
+
.input-value {
|
969
|
+
min-width: 75%;
|
970
|
+
}
|
971
|
+
|
972
|
+
.input-list p {
|
973
|
+
font-size: 1.5em;
|
974
|
+
color: #282928;
|
975
|
+
height: max-content;
|
976
|
+
align-self: center;
|
977
|
+
margin: 0;
|
978
|
+
}
|
979
|
+
|
980
|
+
/* config page */
|
981
|
+
#configuration-container {
|
982
|
+
border: 1px solid;
|
983
|
+
border-width: 1px 0px;
|
984
|
+
}
|
985
|
+
|
986
|
+
#configuration-container,
|
987
|
+
.header-footer {
|
988
|
+
margin-bottom: 5px;
|
989
|
+
padding: 20px 0px;
|
990
|
+
border-radius: 7px;
|
991
|
+
max-width: 90%;
|
992
|
+
margin: auto;
|
993
|
+
}
|
994
|
+
|
995
|
+
|
996
|
+
.header-footer {
|
997
|
+
background-color: #0000;
|
998
|
+
display: flex;
|
999
|
+
justify-content: space-between;
|
1000
|
+
}
|
1001
|
+
|
1002
|
+
.header-footer h4,
|
1003
|
+
.header-footer div,
|
1004
|
+
.header-footer a {
|
1005
|
+
line-height: 0;
|
1006
|
+
margin: auto 0;
|
1007
|
+
|
1008
|
+
}
|
1009
|
+
|
1010
|
+
/* loading icons */
|
1011
|
+
.header-footer p {
|
1012
|
+
margin: 20px 0;
|
1013
|
+
}
|
1014
|
+
|
1015
|
+
|
1016
|
+
.header-footer h4 {
|
1017
|
+
color: darkblue;
|
1018
|
+
}
|
1019
|
+
|
1020
|
+
.header-footer .feather {
|
1021
|
+
height: 3em !important;
|
1022
|
+
stroke-width: 3 !important;
|
1023
|
+
}
|
1024
|
+
|
1025
|
+
#save,
|
1026
|
+
#json {
|
1027
|
+
min-width: 15%;
|
1028
|
+
height: auto;
|
1029
|
+
display: block;
|
1030
|
+
min-height: fit-content;
|
1031
|
+
margin-left: auto;
|
1032
|
+
}
|
1033
|
+
|
1034
|
+
/* configuration list page */
|
1035
|
+
|
1036
|
+
.section-card {
|
1037
|
+
max-width: 99%;
|
1038
|
+
margin-left: auto;
|
1039
|
+
margin-right: auto;
|
1040
|
+
margin-bottom: 1vh;
|
1041
|
+
}
|
1042
|
+
|
1043
|
+
.section-card h4 {
|
1044
|
+
margin-top: 5px;
|
1045
|
+
background-color: #0000 !important;
|
1046
|
+
}
|
1047
|
+
|
1048
|
+
.section-card-header {
|
1049
|
+
background-color: #e1e1e15e;
|
1050
|
+
display: flex;
|
1051
|
+
align-items: center;
|
1052
|
+
padding: 0px 10px;
|
1053
|
+
border-bottom: 1px solid rgba(0, 0, 0, 0.355);
|
1054
|
+
/* justify-content: center; */
|
1055
|
+
}
|
1056
|
+
|
1057
|
+
.section-body {
|
1058
|
+
-webkit-transition: .4s;
|
1059
|
+
transition: .4s;
|
1060
|
+
}
|
1061
|
+
|
1062
|
+
.switch,
|
1063
|
+
.section-card-header input {
|
1064
|
+
position: relative;
|
1065
|
+
display: inline-block;
|
1066
|
+
width: 52px;
|
1067
|
+
height: 27px;
|
1068
|
+
margin-left: auto;
|
1069
|
+
}
|
1070
|
+
|
1071
|
+
.switch input {
|
1072
|
+
opacity: 0;
|
1073
|
+
width: 0;
|
1074
|
+
height: 0;
|
1075
|
+
}
|
1076
|
+
|
1077
|
+
.slider {
|
1078
|
+
position: absolute;
|
1079
|
+
cursor: pointer;
|
1080
|
+
top: 0;
|
1081
|
+
left: 0;
|
1082
|
+
right: 0;
|
1083
|
+
bottom: 0;
|
1084
|
+
background-color: #ccc;
|
1085
|
+
-webkit-transition: .4s;
|
1086
|
+
transition: .4s;
|
1087
|
+
}
|
1088
|
+
|
1089
|
+
.slider:before {
|
1090
|
+
position: absolute;
|
1091
|
+
content: "";
|
1092
|
+
height: calc(27px - 7px);
|
1093
|
+
width: calc(27px - 7px);
|
1094
|
+
left: 4px;
|
1095
|
+
bottom: 4px;
|
1096
|
+
background-color: white;
|
1097
|
+
-webkit-transition: .4s;
|
1098
|
+
transition: .4s;
|
1099
|
+
}
|
1100
|
+
|
1101
|
+
input:checked+.slider {
|
1102
|
+
background-color: darkblue;
|
1103
|
+
}
|
1104
|
+
|
1105
|
+
input:checked+.slider:before {
|
1106
|
+
-webkit-transform: translateX(26px);
|
1107
|
+
-ms-transform: translateX(26px);
|
1108
|
+
transform: translateX(26px);
|
1109
|
+
}
|
1110
|
+
|
1111
|
+
.slider,
|
1112
|
+
.slider:before {
|
1113
|
+
border-radius: 7px
|
1114
|
+
}
|
1115
|
+
|
1116
|
+
/* param container and content styling */
|
1117
|
+
.param {
|
1118
|
+
text-align: left;
|
1119
|
+
padding: 5px;
|
1120
|
+
border-bottom: 1px solid rgba(0, 0, 0, 0.355);
|
1121
|
+
transition: 1s;
|
1122
|
+
}
|
1123
|
+
|
1124
|
+
.param input,
|
1125
|
+
.section-card-header input {
|
1126
|
+
background-color: #ffffff11;
|
1127
|
+
border-radius: 7px;
|
1128
|
+
border: solid 1px;
|
1129
|
+
color: #181818;
|
1130
|
+
min-width: 40%;
|
1131
|
+
max-width: 70%;
|
1132
|
+
}
|
1133
|
+
|
1134
|
+
|
1135
|
+
.section-card-header input {
|
1136
|
+
min-width: calc(27px - 7px);
|
1137
|
+
}
|
1138
|
+
|
1139
|
+
.param p,
|
1140
|
+
.param i {
|
1141
|
+
font-size: .7em;
|
1142
|
+
margin-top: 4px;
|
1143
|
+
}
|
1144
|
+
|
1145
|
+
.param i {
|
1146
|
+
font-size: .7em;
|
1147
|
+
margin-bottom: 5px;
|
1148
|
+
}
|
1149
|
+
|
1150
|
+
.param p {
|
1151
|
+
padding-right: 5px;
|
1152
|
+
max-width: 777px;
|
1153
|
+
}
|
1154
|
+
|
1155
|
+
.param h5 {
|
1156
|
+
font-size: 1em;
|
1157
|
+
}
|
1158
|
+
|
1159
|
+
.param h5,
|
1160
|
+
p {
|
1161
|
+
margin: 5px;
|
1162
|
+
margin-left: 0px;
|
1163
|
+
margin-bottom: 0px;
|
1164
|
+
}
|
1165
|
+
|
1166
|
+
.param button {
|
1167
|
+
width: 20px;
|
1168
|
+
height: 20px;
|
1169
|
+
line-height: 0;
|
1170
|
+
padding: 1px;
|
1171
|
+
box-shadow: none;
|
1172
|
+
margin-bottom: 5px;
|
1173
|
+
}
|
1174
|
+
|
1175
|
+
.param-input {
|
1176
|
+
display: block;
|
1177
|
+
float: left;
|
1178
|
+
min-width: 100%;
|
1179
|
+
}
|
1180
|
+
|
1181
|
+
.param-input input {
|
1182
|
+
min-width: 70%;
|
1183
|
+
}
|
1184
|
+
|
1185
|
+
.param-input input[type="time"] {
|
1186
|
+
min-width: 35%;
|
1187
|
+
}
|
1188
|
+
|
1189
|
+
/* when requirement param is not met */
|
1190
|
+
.requirement-disable {
|
1191
|
+
pointer-events: none;
|
1192
|
+
filter: opacity(25%);
|
1193
|
+
}
|
1194
|
+
|
1195
|
+
/* configuration box page */
|
1196
|
+
|
1197
|
+
#config-box {
|
1198
|
+
min-width: 100%;
|
1199
|
+
min-height: 85vh;
|
1200
|
+
}
|
1201
|
+
|
1202
|
+
|
1203
|
+
|
1204
|
+
|
1205
|
+
/* mobile only changes */
|
1206
|
+
@media only screen and (max-width: 799px) {
|
1207
|
+
|
1208
|
+
/* modbar disable drag layer and buttons*/
|
1209
|
+
.modebar-group:has(a[data-attr=dragmode]),
|
1210
|
+
.draglayer,
|
1211
|
+
.layer-below {
|
1212
|
+
display: none !important;
|
1213
|
+
}
|
1214
|
+
|
1215
|
+
.info,
|
1216
|
+
.alert {
|
1217
|
+
max-width: 100%;
|
1218
|
+
}
|
1219
|
+
}
|
1220
|
+
|
1221
|
+
|
1222
|
+
|
1223
|
+
|
1224
|
+
/* Dark Theme Support */
|
1225
|
+
@media (prefers-color-scheme: dark) {
|
1226
|
+
html.adaptive {
|
1227
|
+
background: #111111;
|
1228
|
+
color: #e1e1e1;
|
1229
|
+
}
|
1230
|
+
|
1231
|
+
img,
|
1232
|
+
figure,
|
1233
|
+
svg.main-svg {
|
1234
|
+
-webkit-filter: invert(.82);
|
1235
|
+
filter: invert(.82);
|
1236
|
+
}
|
1237
|
+
|
1238
|
+
figure,
|
1239
|
+
svg.main-svg {
|
1240
|
+
border-color: #181818;
|
1241
|
+
border-style: solid;
|
1242
|
+
border-width: 1px;
|
1243
|
+
}
|
1244
|
+
|
1245
|
+
button,
|
1246
|
+
.alert,
|
1247
|
+
.info,
|
1248
|
+
select {
|
1249
|
+
color: #e1e1e1;
|
1250
|
+
background-color: #282928;
|
1251
|
+
box-shadow: #282928 4px 7px;
|
1252
|
+
}
|
1253
|
+
|
1254
|
+
button:hover,
|
1255
|
+
.alert:hover,
|
1256
|
+
select:hover {
|
1257
|
+
color: #ccf3ff;
|
1258
|
+
background-color: #3d3d3d;
|
1259
|
+
}
|
1260
|
+
|
1261
|
+
button:active {
|
1262
|
+
background-color: #111111;
|
1263
|
+
}
|
1264
|
+
|
1265
|
+
h2,
|
1266
|
+
h3,
|
1267
|
+
h4,
|
1268
|
+
.header-footer h4,
|
1269
|
+
kbd,
|
1270
|
+
a {
|
1271
|
+
background-color: #111111;
|
1272
|
+
color: #ccf3ff;
|
1273
|
+
border: #3f3f3f;
|
1274
|
+
}
|
1275
|
+
|
1276
|
+
a:hover {
|
1277
|
+
color: #d2e8f0;
|
1278
|
+
}
|
1279
|
+
|
1280
|
+
|
1281
|
+
a:active {
|
1282
|
+
color: #aaccd6;
|
1283
|
+
}
|
1284
|
+
|
1285
|
+
.modebar-btn svg path {
|
1286
|
+
fill: #111 !important;
|
1287
|
+
}
|
1288
|
+
|
1289
|
+
.modebar-btn svg {
|
1290
|
+
filter: invert(100%) sepia(64%) saturate(2%) hue-rotate(294deg) brightness(85%) contrast(93%) !important
|
1291
|
+
}
|
1292
|
+
|
1293
|
+
.modebar-btn--logo svg {
|
1294
|
+
filter: None !important;
|
1295
|
+
/* filter: invert(100%) saturate(100%) brightness(87%) contrast(100%) !important */
|
1296
|
+
}
|
1297
|
+
|
1298
|
+
.g-gtitle,
|
1299
|
+
.g-xtitle,
|
1300
|
+
.g-ytitle,
|
1301
|
+
legend,
|
1302
|
+
th {
|
1303
|
+
color: #e1e1e1;
|
1304
|
+
}
|
1305
|
+
|
1306
|
+
.mystyle tr {
|
1307
|
+
background: none;
|
1308
|
+
}
|
1309
|
+
|
1310
|
+
.mystyle tr:nth-child(even) td,
|
1311
|
+
th {
|
1312
|
+
background: #282928;
|
1313
|
+
}
|
1314
|
+
|
1315
|
+
.mystyle tr:nth-child(odd) td {
|
1316
|
+
background: #111111;
|
1317
|
+
}
|
1318
|
+
|
1319
|
+
.mystyle tr:hover td {
|
1320
|
+
background-color: #3f3f3f;
|
1321
|
+
}
|
1322
|
+
|
1323
|
+
.modebar-group {
|
1324
|
+
background-color: #0000 !important;
|
1325
|
+
}
|
1326
|
+
|
1327
|
+
.modebar-btn {
|
1328
|
+
background: #3f3f3f;
|
1329
|
+
}
|
1330
|
+
|
1331
|
+
.input-list input,
|
1332
|
+
.input-box textarea,
|
1333
|
+
#config-box {
|
1334
|
+
background-color: #282928;
|
1335
|
+
border-color: #e1e1e1;
|
1336
|
+
color: #e1e1e1
|
1337
|
+
}
|
1338
|
+
|
1339
|
+
.input-list p {
|
1340
|
+
color: #e1e1e1;
|
1341
|
+
}
|
1342
|
+
|
1343
|
+
.loading {
|
1344
|
+
/* loading animation */
|
1345
|
+
border: 16px solid #282928;
|
1346
|
+
border-top: 16px solid #ccf3ff;
|
1347
|
+
}
|
1348
|
+
|
1349
|
+
input:checked+.slider {
|
1350
|
+
background-color: #ccf3ff;
|
1351
|
+
}
|
1352
|
+
|
1353
|
+
.param {
|
1354
|
+
border-color: rgba(255, 255, 255, 0.355);
|
1355
|
+
}
|
1356
|
+
|
1357
|
+
.param input,
|
1358
|
+
.section-card-header input {
|
1359
|
+
color: #e1e1e1;
|
1360
|
+
}
|
1361
|
+
|
1362
|
+
.section-card-header {
|
1363
|
+
background-color: #ffffff11;
|
1364
|
+
}
|
1365
|
+
|
1366
|
+
|
1367
|
+
#configuration-container {
|
1368
|
+
background-color: #ffffff07;
|
1369
|
+
border: 0;
|
1370
|
+
}
|
1371
|
+
|
1372
|
+
|
1373
|
+
}
|