-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
129 lines (104 loc) · 1.8 KB
/
style.css
File metadata and controls
129 lines (104 loc) · 1.8 KB
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
119
120
121
122
123
124
125
body {
font-family: 'Arial','Helvetica Neue','Helvetica','sans-serif';
}
h1 {
font-family: 'Arial','Helvetica Neue','Helvetica','sans-serif';
font-size: 40px;
font-style: normal;
font-weight: bold;
text-transform: uppercase;
background-color: #eee;
}
h2 {
font-family: 'Arial','Helvetica Neue','Helvetica','sans-serif';
font-size: 28px;
font-style: normal;
background-color: #eee;
}
h3 {
font-size: 1.5em;
padding: 3px 0px;
/* margin: -5px 0 0px 0;*/
font-style: normal;
margin-bottom:0.2em;
font-weight: bold;
}
h4 {
font-size: 1em;
padding: 3px 0px;
font-style: italic;
margin-bottom:0.2em;
}
h5 {
font-size: 1.5em;
padding: 3px 0px;
font-style: normal;
margin-left: 20px;
}
.resize {
width: 500px;
height: auto;
border: 1.5px solid black;
}
.panel {
display: flex;
}
.column {
flex: 50%;
margin-left: 10px;
}
.desc {
font-family: "Mercury SSm A", "Mercury SSm B";
/*font-style: italic;*/
font-weight: 400;
font-size: 1em;
line-height: 1.4em;
margin: 0 auto;
}
.centered{
text-align:center;
}
.text {
text-align: left;
}
.button {
width: 105px;
padding: 5px 5px;
margin-right: 3px;
margin-bottom: 3px;
cursor: pointer;
text-align: center;
font-size: .9em;
border: 2px solid black;
float: left;
-moz-border-radius: 10px;
border-radius: 6px;
}
.button:hover {
background: black;
color: white;
}
#blank {
margin-top: 35px;
}
#start {
margin-bottom: 25px;
}
#n {
font-size: 3.0em;
}
#arrived, #arrivedVal {
color: red;
}
#served, #servedVal {
color: blue;
}
#queued, #queuedVal {
color: orange;
}
#avgWaitTime, #avgWaitTimeval {
color: green;
}
#queueInfo {
margin-left: 35px;
}