-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
72 lines (62 loc) · 1021 Bytes
/
Copy pathstyle.css
File metadata and controls
72 lines (62 loc) · 1021 Bytes
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
body {
margin: 0;
background: #000;
font-family: 'Share Tech Mono', monospace;
color: #ff9d00;
min-height: 100vh;
display: flex;
flex-direction: column;
}
html {
height: 100%;
scroll-behavior: smooth;
overscroll-behavior-y: none;
}
.container {
flex: 1 0 auto;
display: flex;
flex-direction: column;
gap: 12px;
padding: 10px;
box-sizing: border-box;
}
.station {
border: 1px solid #222;
border-radius: 10px;
padding: 12px;
background: #050505;
box-shadow: 0 0 10px rgba(255, 140, 0, 0.15);
}
.station-title {
font-size: 18px;
color: #ffb300;
margin-bottom: 4px;
}
.station-desc {
font-size: 12px;
color: #777;
margin-bottom: 10px;
}
.row {
display: flex;
justify-content: space-between;
gap: 8px;
padding: 4px 0;
border-bottom: 1px dashed #222;
}
.row:last-child {
border-bottom: none;
}
.route {
width: 50px;
}
.dest {
flex: 1;
text-align: right;
word-break: break-word;
}
.time {
width: 60px;
text-align: right;
color: #ffb300;
}