-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
131 lines (115 loc) · 2.49 KB
/
Copy pathstyle.css
File metadata and controls
131 lines (115 loc) · 2.49 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
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
body {
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
line-height: 1.6;
margin: 0;
padding: 20px;
background-color: #f4f7f6;
color: #333;
display: flex;
justify-content: center;
align-items: flex-start;
min-height: 100vh;
}
.container {
width: 100%;
max-width: 700px;
background: #fff;
padding: 25px;
border-radius: 8px;
box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
h1 {
text-align: center;
color: #2c3e50;
margin-bottom: 25px;
}
.input-group {
margin-bottom: 18px;
}
.input-group label {
display: block;
margin-bottom: 6px;
font-weight: 500;
color: #555;
}
.input-group input {
width: calc(100% - 24px);
padding: 10px 12px;
border: 1px solid #ccc;
border-radius: 5px;
font-size: 1em;
}
button {
display: block;
width: 100%;
padding: 12px;
background-color: #3498db;
color: white;
border: none;
border-radius: 5px;
cursor: pointer;
font-size: 1.1em;
transition: background-color 0.3s ease;
}
button:hover {
background-color: #2980b9;
}
#results {
margin-top: 25px;
}
#results h2 {
margin-top: 0;
margin-bottom: 10px; /* Reduced margin */
color: #2c3e50;
}
#status { /* For general status messages */
font-weight: bold;
margin-bottom: 10px;
}
#busList { /* Container for individual bus items */
margin-top: 10px;
}
.bus-item {
background-color: #eaf2f8; /* Light blue tint, consistent with old results */
border: 1px solid #c5d9e8;
border-left: 4px solid #3498db;
padding: 12px 15px;
margin-bottom: 12px;
border-radius: 0 5px 5px 0;
}
.bus-item h3 {
margin-top: 0;
margin-bottom: 8px;
color: #1f618d; /* Slightly darker blue for item heading */
font-size: 1.15em;
}
.bus-item p {
margin: 6px 0;
font-size: 0.95em;
}
#map {
height: 350px; /* Or your preferred height */
margin-top: 25px;
border: 1px solid #ddd;
border-radius: 5px;
}
.api-warning {
margin-top: 25px;
padding: 15px;
background-color: #fff9c4;
border: 1px solid #fce084;
color: #5d4037;
border-radius: 5px;
font-size: 0.9em;
}
.api-warning ul {
margin: 5px 0 0 0;
padding-left: 20px;
}
.api-warning a {
color: #007bff;
text-decoration: none;
}
.api-warning a:hover {
text-decoration: underline;
}