-
Notifications
You must be signed in to change notification settings - Fork 1
/
css.css
79 lines (67 loc) · 1.09 KB
/
css.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
* {
box-sizing: border-box;
}
body {
margin: 0 auto;
font-family: Helvetica, Arial, Sans-Serif;
background-color: #f4f4f4;
}
.header {
border-bottom: 1px solid #AAA;
text-align: center;
padding: 10px;
background-color: #e60000;
color: #FFF;
font-size: 25px;
}
.header > .fa {
padding-right: 15px;
}
.stop-selector-item {
border-bottom: 1px solid #AAA;
padding: 10px;
font-size: 20px;
background-color: #FFF;
}
.selection-icon {
display: inline-block;
color: #71a100;
width: 25px;
}
.fa-arrow-right {
padding: 0 10px;
}
.refresh-button-wrapper {
text-align: right;
margin: 5px;
}
#departure-loader {
margin-top: 50px;
display: none;
font-size: 150px;
}
.departure-table {
padding-top: 20px;
text-align: center;
}
.departure-entry {
font-size: 20px;
}
.departure-entry:first-child {
font-size: 110px;
padding-bottom: 20px;
}
#refresh-button {
display: none;
border: 1px solid #AAA;
border-radius: 3px;
padding: 15px;
width: 62px;
text-align: center;
font-size: 30px;
background-color: #71a100;
color: #FFF;
}
#refresh-button:active {
background-color: #4e6f01;
}