-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.css
116 lines (96 loc) · 1.78 KB
/
app.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
/*
(c) Copyright 2021 ABB
Any unauthorized use, reproduction, distribution,
or disclosure to third parties is strictly forbidden.
ABB reserves all rights regarding Intellectual Property Rights
*/
body {
display: flex;
flex-direction: row;
height: 680px;
width: 1026px;
}
p {
margin: 5px;
}
.label {
font-weight: bold;
font-size: 18px;
margin-left: 10px;
margin-right: 10px;
}
.output {
font-family: Consolas, monospace;
font-size: 24px;
font-weight: bold;
text-align: left;
}
.signal {
display: flex;
flex-direction: column;
height: 100px;
width: 200px;
justify-content: space-between;
align-items: flex-start;
padding-left: 20px;
}
.row {
display: flex;
flex-direction: row;
align-items: center;
padding-left: 20px;
margin-bottom: 50px;
}
.col {
display: flex;
flex-direction: column;
align-items: center;
padding-left: 20px;
margin-bottom: 50px;
}
.signal-row {
flex-direction: row;
height: auto;
align-items: center;
justify-content: flex-start;
}
.signal-col {
height: 50px;
width: 450px;
align-items: center;
justify-content: space-between;
}
#outputDiv {
margin: 0px 20px;
}
#myInput {
width: 200px;
margin-right: 20px;
}
.chart {
margin-left: 30px;
}
#menu-main {
width:150px;
flex: 0 0 auto;
border-left: 2px solid gray;
}
.content {
display: none;
flex-direction: column;
justify-content: flex-start;
align-items: flex-start;
padding: 30px;
flex: 1 1 auto;
}
.LiftKit-main-infobox {
border-style: solid;
border-radius: 2px;
border-color: #d5d5d5;
box-sizing: border-box;
display: flex;
flex-flow: column;
width: 100%;
height: auto;
padding: 0;
}