-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstats.css
More file actions
193 lines (162 loc) · 2.49 KB
/
Copy pathstats.css
File metadata and controls
193 lines (162 loc) · 2.49 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
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
/* Copyright (c) Daniel Richman. GNU GPL 3 */
div#title
{
font-size: 150%;
font-weight: bold;
text-align: center;
}
div#loading
{
text-align: center;
font-size: 200%;
padding: 50px;
}
div#intro
{
width: 1000px;
margin: 40px auto;
}
p#totallines_p, p#getstarted
{
font-size: 130%;
}
span#totallines
{
font-weight: bold;
}
div#menu
{
text-align: center;
margin: 10px 0;
}
div#menu div, div.list_go, div#daily_timeranges div
{
text-align: center;
display: inline-block;
padding: 10px;
border: 1px solid blue;
background-color: #dff;
}
div#daily_timeranges div
{
display: block;
margin: 5px 0;
}
div#menu div:hover, div.list_go:hover, div#daily_timeranges div:hover
{
background-color: #0ff;
}
div#menu div:active, div.list_go:active, div#daily_timeranges div:active
{
background-color: #8f8;
}
div#flightlist div.list_item
{
margin: 3px auto;
border: 1px solid gray;
background-color: #eff;
text-align: center;
width: 800px;
}
div.list_info, div.list_buttons
{
display: inline-block;
width: 350px;
vertical-align: middle;
}
div.list_label
{
font-size: 130%;
font-weight: bold;
text-align: center;
}
div.list_go
{
width: 100px;
padding: 8px;
border: 1px solid gray;
margin: 2px;
}
span.list_id, span.list_launchtime
{
font-size: 70%;
}
span.list_id
{
font-family: monospace;
}
div#graph
{
margin: 0 auto;
width: 1200px;
}
div#pie, div#daily, div#flight_id
{
text-align: center;
}
div#flot
{
display: inline-block;
width: 800px;
height: 800px;
}
div#flight_id
{
font-size: 70%;
font-family: monospace;
margin-bottom: 5px;
}
div.pie_label
{
color: white;
background-color: black;
white-space: nowrap;
border-radius: 3px;
padding: 4px;
opacity: 0.8;
}
div.pie_label_select
{
background-color: blue !important;
opacity: 1 !important;
}
div.pie_label_select div.pie_label_name
{
font-weight: bold;
}
div.pie_label_info
{
font-size: 70%;
}
div#pie_list_container, div#daily_timeranges
{
display: inline-block;
vertical-align: top;
height: 800px;
width: 300px;
}
div#pie_list_container
{
overflow-y: scroll;
font-size: 70%;
}
table#pie_list
{
width: 100%;
}
tr.pie_list_title td
{
font-weight: bold;
}
table#pie_list td.pie_list_label
{
width: 200px;
}
table#pie_list td.pie_list_number
{
text-align: center;
}
div.pie_label_smaller
{
font-size: 70%;
}