blob: 95ace1ef313a60e19f141a6356b053cdc26c7dc5 (
plain) (
blame)
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
|
#container {
color: var(--offwhite);
}
mat-label {
color: var(--offwhite) !important;
}
select {
color: var(--offwhite) !important;
}
mat-form-field {
color: var(--offwhite) !important;
padding: 0;
margin: 5px;
font-size: 12px;
width: 100%;
}
hr {
color: var(--offwhite) !important;
margin-bottom: 30px;
}
.neuron {
text-align: justify;
border: 1px solid white;
border-radius: 5px;
padding: 0;
color: var(--offwhite) !important;
background-color: var(--ns-bg-dark-100) !important;
min-width: none;
max-width: 12.5rem;
}
.row {
margin: 0;
padding: 0;
}
.mat-fix ::ng-deep .mat-form-field-wrapper {
margin-bottom: -1.85em;
}
#layers-control {
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
}
#layers {
margin: 0;
padding: 0;
display: flex;
flex-direction: row;
overflow-x: auto;
overflow-wrap: break-word;
overflow-y: hidden;
width: 100%;
}
.layer {
border: 1px solid var(--ns-primary);
border-radius: 4px;
margin: 5px;
padding: 0px;
width: 12rem;
height: 11.1rem;
}
.tm {
margin-left: 10px;
}
.layer>* {
margin-top: 0;
}
.layer>mat-form-field {
margin-left: 0;
}
.m-2 {
max-height: 20 rem;
}
mat-slider {
width: 50%;
}
.slider {
background-color: transparent;
}
.center-center {
text-align: center;
margin-right: 10px;
padding-right: 10px;
padding-bottom: 15px;
font-size: 20px !important;
font-weight: 600;
}
|