blob: ce847ef8e9df2b66405a5ffa8545313e6024302e (
plain)
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
|
a {
color: #0074d9;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
#service-cards {
list-style: none;
padding: 0;
margin: 0;
}
#service-cards article {
background: #f9f9f9;
border: 1px solid #ddd;
border-radius: 4px;
margin: 0.5rem 0;
padding: 1rem;
}
#service-cards article header {
font-weight: 600;
font-size: 1.1rem;
margin-bottom: 0.5rem;
}
#service-cards article main {
font-size: 0.9rem;
margin-bottom: 0.75rem;
color: #555;
}
#service-cards article footer {
margin-top: 0.5rem;
display: flex;
flex-wrap: wrap;
gap: 0.125rem 0.75rem;
}
#service-cards article footer span.route-group {
display: inline-block;
padding: 0.3rem 0.6rem;
margin: 0.25rem 0.1rem;
font-size: 0.85rem;
font-weight: 600;
background: #FFF;
border-bottom: 4px solid var(--route-color, #000);
color: var(--route-text, #000);
}
/* Filter button styles */
.filter-btn {
padding: 0.4rem 0.8rem;
margin: 0.2rem;
border: 1px solid #0074d9;
border-radius: 4px;
background: #fff;
color: #0074d9;
cursor: pointer;
transition: background 0.2s, color 0.2s;
}
.filter-btn.active {
background: #0074d9;
color: #fff;
}
|