aboutsummaryrefslogtreecommitdiff
path: root/frontend/src/app/_elements/form-model/form-model.component.css
blob: 5776085f6a94042ff17fd0b6a9a55d539f55b0be (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
#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;
}

::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: 13.5rem;
}

.layer>mat-form-field {
    margin-left: 0;
}
.m-2{
    max-height: 20 rem;
}