-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathintervalTimetable.css
More file actions
116 lines (93 loc) · 1.88 KB
/
intervalTimetable.css
File metadata and controls
116 lines (93 loc) · 1.88 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
.routeHeadings {
display: flex;
gap: 0.2em;
font-size: 20px;
align-items: center;
}
.interval {
color: var(--hsl-blue);
}
.timetableRoot {
color: black;
}
.timetableRoot > * {
margin: 0 0 0 calc(-1 * var(--border-radius));
padding: 0.2em calc(0.45em + var(--border-radius));
}
.timetableRoot > *:nth-child(odd) {
background-color: var(--timetable-accent-color);
}
.firstAndLastDepartures {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(0, 1fr));
gap: 0.2em;
padding: 0.2em 0 0.2em calc(0.45em + var(--border-radius));
margin: 0 0 0 calc(-1 * var(--border-radius));
}
.firstAndLastDepartures div {
display: flex;
justify-content: center;
}
.departureTitles {
flex-direction: column;
}
.firstAndLastDepartureValues {
align-items: center;
justify-content: center;
}
.timetableRoutes {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(0, 1fr));
padding: 0 0 0.5em 0.45em;
gap: 0.2em;
}
.timetableRoutes div {
justify-content: center;
}
.timetableMinutes {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(0, 1fr));
}
.icon {
width: 20px;
height: 20px;
justify-content: center;
}
.compactPaddingRight {
padding-right: calc(0.45em + var(--border-radius));
}
.routeHeadingsNonCompact {
padding: 0.2em 0 0.2em calc(0.45em + var(--border-radius));
}
.timetableMinutesNonCompact {
padding: 0.2em 0 0.2em calc(0.45em + var(--border-radius));
}
.flexContainer {
display: flex;
justify-content: space-between;
gap: calc((1 * var(--border-radius)) + 8px);
}
.leftPanel {
flex: 1;
}
.busRoutesContainer {
display: flex;
gap: 12px;
margin-left: calc(-1 * var(--border-radius));
padding: 0 0 0.4em 0.938em;
}
.rightPanel {
flex: 1;
}
.hours {
/* Default styles for hours div */
}
.hoursLong {
font-size: 19px;
}
.timetableMinutesLong {
height: 30px;
}
.intervalLong {
font-size: 19px;
}