-
Notifications
You must be signed in to change notification settings - Fork 0
/
stylesheet.css
164 lines (138 loc) · 2.39 KB
/
stylesheet.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
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
@font-face {
font-family: "24 LED";
src: url("./third-party/24_LED/24_LED.eot?") format("eot"),
url("./third-party/24_LED/24_LED.woff") format("woff"),
url("./third-party/24_LED/24_LED.ttf") format("truetype"),
url("./third-party/24_LED/24_LED.svg#24LED") format("svg");
}
.grid-container {
margin: 0 auto;
display: grid;
grid-template-columns: 900px 450px;
width: max-content;
}
.grid-item {
margin: auto;
}
.grid-item:nth-child(even) {
margin-left: 20px;
}
#pidTable {
table-layout: fixed;
border-spacing: 0;
padding: 5px 10px;
}
td {
word-wrap: break-word;
white-space: nowrap;
overflow: hidden;
}
.lineCell,
.destinationCell {
text-align: left;
}
#lineColumn {
width: 95px;
}
#destinationColumn {
width: 100%;
}
#departureColumn {
width: 185px;
}
#wrapper,
#pidTable {
width: 900px;
height: 300px;
}
#wrapper {
font-size: 64px;
color: yellow;
background-color: black;
font-family: "24 LED", sans-serif;
}
.textRow {
text-align: center !important;
}
/* Prevent line breaks */
td br {
display: none;
}
td * {
display: inline flow-root;
}
#animationContainer {
visibility: hidden;
width: 250px;
margin: auto 25px;
}
#controls {
display: flex;
width: max-content;
margin: 25px auto;
}
#lineControls {
height: 300px;
width: 450px;
}
body {
background-image: linear-gradient(345deg, #e9bcb7, #96c9bf);
background-attachment: fixed;
text-align: center;
}
#github {
position: fixed;
top: 10px;
right: 10px;
}
#github > a {
text-decoration: none;
color: black;
}
#slider {
-webkit-appearance: none;
margin: 5px;
width: 100%;
height: 25px;
background: #394e3f;
outline: none;
opacity: 0.7;
transition: opacity 0.2s;
}
#slider:hover {
opacity: 1;
}
#slider::-webkit-slider-thumb {
appearance: none;
width: 25px;
height: 25px;
background: #737979;
cursor: pointer;
}
#slider::-moz-range-thumb {
width: 25px;
height: 25px;
background: #04aa6d;
cursor: pointer;
}
button {
cursor: pointer;
position: relative;
display: inline-block;
padding: 0.75em 1em;
font-size: 16px;
color: #dfdedf;
background: #747365;
border-radius: 4px;
box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2);
font-weight: bold;
text-shadow: 0 2px 0 rgba(0, 0, 0, 0.2);
}
button:hover {
background: #5e5d60;
}
/* Don't display at start */
#gifAnimationContainer,
#slidesContainer {
display: none;
}