blob: 59e004e94dd3d36a8d7d48b5f94a012a6c9c4657 (
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
|
ul {
list-style: none;
}
.holder {
display: flex;
flex-direction: row;
align-items: stretch;
}
.sidenav {
width: 250px;
background-color: var(--ns-bg-dark-50);
}
@media only screen and (max-width: 400px) {
.sidenav {
width: 100%;
background-color: var(--ns-bg-dark-100);
}
.holder {
flex-direction: column;
}
}
mat-stepper {
background-color: transparent;
}
.label {
color: white;
}
.steps-container {
position: relative;
display: flex;
flex-direction: column;
width: 100%;
height: 100%;
overflow-y: auto;
}
.step-content {
position: relative;
width: 98%;
min-height: 100%;
display: flex;
flex-direction: row;
justify-content: center;
align-items: center;
/*margin-bottom: 100px;*/
}
.step-content-inside {
width: 98%;
height: 98%;
}
.ekspName {
font-weight: bold;
font-size: large;
}
.addedElement {
color: var(--ns-accent);
}
.text-overflow {
overflow-wrap: break-word;
width: 170px;
display: inline-block;
text-align: left;
}
.text-overflow-experiment-name {
overflow-wrap: break-word;
}
|