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
|
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
|
-
+
-
-
-
-
-
-
-
-
-
-
-
|
h1 {
margin: 5px 0 5px 0;
color: hsl(210, 50%, 50%);
font: bold 30px "Trebuchet MS", "Fira Sans", "Liberation Sans", sans-serif;
text-align: center;
}
h2 {
margin: 5px 0 2px 0;
margin: 10px 0 2px 0;
color: hsl(0, 50%, 50%);
font: bold 20px "Trebuchet MS", "Fira Sans", "Liberation Sans", sans-serif;
}
h3 {
margin: 3px 0 2px 0;
color: hsl(210, 50%, 50%);
font: bold 16px "Trebuchet MS", "Fira Sans", "Liberation Sans", sans-serif;
}
/*
Main buttons
*/
.columns {
display: flex;
}
ul {
margin-left: 30px;
}
input[type=text].large {
display: inline-block;
|
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
|
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
119
120
121
122
123
124
125
|
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
|
}
input[placeholder] {
color: hsl(0, 0%, 50%);
}
.dic_button {
margin: 2px;
display: inline-block;
border: 1px solid hsl(0, 0%, 70%);
border-radius: 3px;
}
.dic_button_close {
display: inline-block;
padding: 1px 5px;
background-color: hsl(0, 50%, 50%);
color: hsl(0, 90%, 90%);
cursor: pointer;
}
.dic_button_label {
display: inline-block;
padding: 1px 10px;
background-color: hsl(0, 0%, 90%);
}
/*
Table
*/
#wait_progress {
width: 100%;
height: 4px;
}
table {
border: 1px solid hsl(210, 10%, 50%);
width: 100%;
font-size: 14px;
}
th {
padding: 5px 10px;
border-left: 1px solid hsl(210, 10%, 90%);
text-align: left;
}
td {
|