-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmain.css
118 lines (99 loc) · 1.61 KB
/
main.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
117
118
body {
font-family: "Calibri";
margin:0px;
padding:50px;
font-size: 16px;
}
span{
display:block;
font-size:22px;
font-weight:600;
padding-bottom:5px;
padding-top:5px;
}
#settings, #results {
background-color: #DDDDDD;
width:400px;
padding:15px;
border: 1px solid #000000;
}
#settings input{
display:block;}
#settings span {
display:block;
font-weight:300;
font-size:14px;
padding-top:0px;
padding-bottom:0px;
}
#results span{
font-size:16px;
display:block;
font-weight:500;
padding-bottom:0px;
}
.fullfield{
display: inline-block;
width: 120px;
padding-bottom:5px;
background-color: #DDDDDD;
text-align: center;
}
.fullfield2{
display: inline-block;
width: 120px;
padding-bottom:5px;
background-color: #FFFFFF;
text-align: center;
}
.fullfield2 input.ng-invalid.ng-touched {
background-color: #FA787E;
}
.fullfield input.ng-invalid.ng-touched {
background-color: #FA787E;
}
#prog{
width: fit-content;
height: fit-content;
max-width:1320px;
border: 1px solid #000000;
}
#buttons{
padding-top:5px;
padding-bottom:5px;
}
.smallfield{
margin-left:5px;
min-width:20px;
border: 0px solid #000000;
}
.smallfield input{
width:18px;
}
.smallfield2{
margin-left:5px;
min-width:32px;
border: 0px solid #000000;
}
.smallfield2 input{
width:30px;
}
#logs{
width: fit-content;
height: fit-content;
border: 1px solid #000000;
background-color: #DDDDBB;
}
.log{
display: inline-block;
background-color: #FFFFFF;
}
.log2{
display: inline-block;
background-color: #DDDDBB;
}
.warning{
display: inline;
color: #FF0000;
height: 18px;
}