File size: 17,845 Bytes
fa881a6 | 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 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=1080, initial-scale=1.0">
<title>Transit Results UI</title>
<style>
body { margin: 0; padding: 0; background: transparent; font-family: Arial, Helvetica, sans-serif; color: #202124; }
#render-target {
width: 1080px; height: 2400px; position: relative; overflow: hidden;
background: #FFFFFF; border-radius: 28px; box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}
.status-bar {
height: 88px; padding: 0 32px; display: flex; align-items: center; justify-content: space-between; color: #3c4043; font-size: 34px;
}
.status-right { display: flex; gap: 26px; align-items: center; }
.dot { width: 18px; height: 18px; border-radius: 50%; background: #9AA0A6; display: inline-block; }
.top-area { padding: 0 32px 12px 32px; }
.route-header { display: flex; align-items: flex-start; gap: 20px; }
.left-icons { width: 72px; display: flex; flex-direction: column; align-items: center; gap: 18px; padding-top: 8px; }
.circle-blue { width: 28px; height: 28px; border-radius: 50%; border: 6px solid #1a73e8; background: #ffffff; }
.vertical-dots { width: 4px; height: 40px; background: repeating-linear-gradient(to bottom, #9AA0A6 0 4px, transparent 4px 8px); border-radius: 2px; }
.input-stack { flex: 1; display: flex; flex-direction: column; gap: 16px; }
.field {
border: 1px solid #DADCE0; border-radius: 20px; height: 120px; display: flex; align-items: center; padding: 0 28px; font-size: 42px; color: #1a73e8; background: #fff;
box-shadow: inset 0 1px 0 rgba(0,0,0,0.03);
}
.field.secondary { color: #202124; }
.field .right-actions { margin-left: auto; display: flex; align-items: center; gap: 26px; color: #5f6368; }
.mode-row { margin-top: 26px; display: flex; align-items: center; gap: 34px; color: #5f6368; font-size: 38px; }
.mode { display: flex; align-items: center; gap: 14px; }
.mode .chip {
padding: 16px 22px; border-radius: 24px; border: 1px solid #DADCE0; background: #fff; color: #3c4043; font-size: 36px;
}
.mode .chip.active { background: #E8F0FE; color: #1a73e8; border-color: #C5D7FB; }
.divider { height: 2px; background: #E0E0E0; margin: 22px 0; }
.controls { display: flex; justify-content: space-between; align-items: center; }
.pill {
border: 1px solid #DADCE0; border-radius: 26px; padding: 18px 26px; font-size: 36px; background: #fff; color: #3c4043;
display: inline-flex; align-items: center; gap: 18px;
box-shadow: 0 1px 0 rgba(0,0,0,0.03);
}
.content { padding: 0 32px; }
.section-title { font-size: 44px; font-weight: 600; margin: 26px 0; color: #202124; }
.card {
border-top: 1px solid #E0E0E0;
padding: 34px 4px 34px 4px;
}
.route-row { display: flex; justify-content: space-between; align-items: center; }
.segments { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.sep { color: #9AA0A6; font-size: 38px; }
.duration { font-size: 50px; font-weight: 600; color: #202124; }
.sub { display: flex; justify-content: space-between; align-items: center; margin-top: 12px; font-size: 36px; color: #5f6368; }
.note { margin-top: 8px; font-size: 34px; color: #d93025; }
.price { color: #5f6368; }
/* Badges */
.badge {
display: inline-flex; align-items: center; justify-content: center;
height: 56px; min-width: 56px; padding: 0 16px; border-radius: 12px; font-weight: 700; color: #fff; font-size: 34px;
}
.badge-round { border-radius: 50%; width: 56px; min-width: 56px; }
.b-red { background: #D93025; }
.b-gold { background: #C89400; }
.b-pink { background: #D48BA2; }
.b-orange { background: #E67C2E; }
.b-yellow { background: #F6C200; color: #202124; }
.b-purple { background: #6A1B9A; }
.b-blue { background: #1a73e8; }
.b-navy { background: #2947A8; }
.bus-red { background: #E53935; }
.alert { display: flex; align-items: center; gap: 12px; color: #d93025; font-size: 36px; margin-top: 20px; }
/* Simple icons */
svg { display: inline-block; }
.ic { width: 44px; height: 44px; }
.ic-lg { width: 48px; height: 48px; }
.mode-icon { width: 44px; height: 44px; }
/* bottom gesture bar */
.gesture { position: absolute; bottom: 22px; left: 50%; transform: translateX(-50%); width: 360px; height: 12px; background: #C7C7C7; border-radius: 8px; }
</style>
</head>
<body>
<div id="render-target">
<div class="status-bar">
<div>9:42</div>
<div class="status-right">
<div class="dot"></div>
<div>82°</div>
<div class="dot"></div>
<div class="dot"></div>
<div class="dot"></div>
</div>
</div>
<div class="top-area">
<div class="route-header">
<div class="left-icons">
<!-- Back arrow -->
<svg class="ic" viewBox="0 0 24 24">
<path d="M15 18l-6-6 6-6" fill="none" stroke="#5f6368" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
</svg>
<div class="circle-blue"></div>
<div class="vertical-dots"></div>
<!-- Pin -->
<svg class="ic" viewBox="0 0 24 24">
<path d="M12 2C8.7 2 6 4.7 6 8c0 5.3 6 14 6 14s6-8.7 6-14c0-3.3-2.7-6-6-6zm0 8a2 2 0 110-4 2 2 0 010 4z" fill="#EA4335"></path>
</svg>
</div>
<div class="input-stack">
<div class="field">
Your location
<div class="right-actions">
<!-- more (vertical) -->
<svg class="ic" viewBox="0 0 24 24">
<circle cx="12" cy="5" r="2" fill="#5f6368"></circle>
<circle cx="12" cy="12" r="2" fill="#5f6368"></circle>
<circle cx="12" cy="19" r="2" fill="#5f6368"></circle>
</svg>
</div>
</div>
<div class="field secondary">
Louvre Museum
<div class="right-actions">
<!-- swap -->
<svg class="ic" viewBox="0 0 24 24">
<path d="M7 7h10l-3-3M17 17H7l3 3" fill="none" stroke="#5f6368" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
</svg>
</div>
</div>
</div>
</div>
<div class="mode-row">
<div class="mode">
<!-- car -->
<svg class="mode-icon" viewBox="0 0 24 24">
<path d="M3 15h18l-2-6H5l-2 6zm3 3a2 2 0 110-4 2 2 0 010 4zm12 0a2 2 0 110-4 2 2 0 010 4z" fill="#5f6368"></path>
</svg>
<span>1 hr 37</span>
</div>
<div class="mode">
<!-- bike -->
<svg class="mode-icon" viewBox="0 0 24 24">
<circle cx="6" cy="17" r="4" fill="none" stroke="#5f6368" stroke-width="2"></circle>
<circle cx="18" cy="17" r="4" fill="none" stroke="#5f6368" stroke-width="2"></circle>
<path d="M7 13l3-3h4l2 4" stroke="#5f6368" stroke-width="2" fill="none"></path>
</svg>
<span>—</span>
</div>
<div class="mode">
<!-- train -->
<svg class="mode-icon" viewBox="0 0 24 24">
<rect x="5" y="5" width="14" height="10" rx="2" fill="#1a73e8"></rect>
<circle cx="8" cy="17" r="1.8" fill="#1a73e8"></circle>
<circle cx="16" cy="17" r="1.8" fill="#1a73e8"></circle>
</svg>
<div class="chip active">1 hr 55</div>
</div>
<div class="mode">
<!-- walk -->
<svg class="mode-icon" viewBox="0 0 24 24">
<circle cx="12" cy="5" r="2" fill="#5f6368"></circle>
<path d="M12 7l-2 4-3 2m5-2l3 5" stroke="#5f6368" stroke-width="2" fill="none" stroke-linecap="round"></path>
</svg>
<span>1 day</span>
</div>
<div class="mode">
<!-- bike -->
<svg class="mode-icon" viewBox="0 0 24 24">
<circle cx="6" cy="17" r="4" fill="none" stroke="#5f6368" stroke-width="2"></circle>
<circle cx="18" cy="17" r="4" fill="none" stroke="#5f6368" stroke-width="2"></circle>
<path d="M7 13l3-3h4l2 4" stroke="#5f6368" stroke-width="2" fill="none"></path>
</svg>
<span>7 hr</span>
</div>
</div>
<div class="divider"></div>
<div class="controls">
<div class="pill">
<!-- clock -->
<svg class="ic" viewBox="0 0 24 24">
<circle cx="12" cy="12" r="9" fill="none" stroke="#5f6368" stroke-width="2"></circle>
<path d="M12 7v6l4 2" stroke="#5f6368" stroke-width="2" fill="none" stroke-linecap="round"></path>
</svg>
<span>Depart at 9:37 PM</span>
<svg class="ic" viewBox="0 0 24 24">
<path d="M6 9l6 6 6-6" fill="none" stroke="#5f6368" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
</svg>
</div>
<div class="pill">
<!-- sliders icon -->
<svg class="ic" viewBox="0 0 24 24">
<path d="M5 7h14M7 7v8M12 11h7M15 11v6" stroke="#5f6368" stroke-width="2" fill="none" stroke-linecap="round"></path>
</svg>
<span>Options</span>
</div>
</div>
</div>
<div class="content">
<div class="section-title">Public transport</div>
<!-- Card 1 -->
<div class="card">
<div class="route-row">
<div class="segments">
<!-- train icon -->
<svg class="ic-lg" viewBox="0 0 24 24">
<rect x="5" y="5" width="14" height="10" rx="2" fill="#5f6368"></rect>
<circle cx="8" cy="17" r="1.6" fill="#5f6368"></circle>
<circle cx="16" cy="17" r="1.6" fill="#5f6368"></circle>
</svg>
<div class="badge b-red">A</div>
<span class="sep">›</span>
<svg class="ic-lg" viewBox="0 0 24 24">
<rect x="5" y="5" width="14" height="10" rx="2" fill="#5f6368"></rect>
<circle cx="8" cy="17" r="1.6" fill="#5f6368"></circle>
<circle cx="16" cy="17" r="1.6" fill="#5f6368"></circle>
</svg>
<span class="sep">›</span>
<div class="badge b-gold">10</div>
<span class="sep">›</span>
<div class="badge b-pink">7</div>
</div>
<div class="duration">1 hr 55 min</div>
</div>
<div class="sub">
<div>9:46 PM – 11:41 PM</div>
<div class="price">€2.10</div>
</div>
<div class="note">
in <span style="color:#d93025;">5 min</span> (delayed), <span style="color:#d93025;">25 min</span> (delayed) from République
</div>
</div>
<!-- Card 2 -->
<div class="card">
<div class="route-row">
<div class="segments">
<svg class="ic-lg" viewBox="0 0 24 24">
<rect x="5" y="5" width="14" height="10" rx="2" fill="#5f6368"></rect>
<circle cx="8" cy="17" r="1.6" fill="#5f6368"></circle>
<circle cx="16" cy="17" r="1.6" fill="#5f6368"></circle>
</svg>
<div class="badge b-red">A</div>
<span class="sep">›</span>
<svg class="ic-lg" viewBox="0 0 24 24">
<rect x="5" y="5" width="14" height="10" rx="2" fill="#5f6368"></rect>
<circle cx="8" cy="17" r="1.6" fill="#5f6368"></circle>
<circle cx="16" cy="17" r="1.6" fill="#5f6368"></circle>
</svg>
<span class="sep">›</span>
<!-- walk -->
<svg class="ic-lg" viewBox="0 0 24 24">
<circle cx="12" cy="5" r="2" fill="#5f6368"></circle>
<path d="M12 7l-2 4-3 2m5-2l3 5" stroke="#5f6368" stroke-width="2" fill="none" stroke-linecap="round"></path>
</svg>
<span class="sep">›</span>
<svg class="ic-lg" viewBox="0 0 24 24">
<rect x="5" y="5" width="14" height="10" rx="2" fill="#5f6368"></rect>
<circle cx="8" cy="17" r="1.6" fill="#5f6368"></circle>
<circle cx="16" cy="17" r="1.6" fill="#5f6368"></circle>
</svg>
<span class="sep">›</span>
<div class="badge bus-red">72</div>
</div>
<div class="duration">1 hr 59 min</div>
</div>
<div class="sub">
<div>9:46 PM – 11:45 PM</div>
<div class="price">€2.50</div>
</div>
<div class="note">
in <span style="color:#d93025;">5 min</span> (delayed), <span style="color:#d93025;">25 min</span> (delayed) from République
</div>
</div>
<!-- Card 3 -->
<div class="card">
<div class="route-row">
<div class="segments">
<svg class="ic-lg" viewBox="0 0 24 24">
<rect x="5" y="5" width="14" height="10" rx="2" fill="#5f6368"></rect>
<circle cx="8" cy="17" r="1.6" fill="#5f6368"></circle>
<circle cx="16" cy="17" r="1.6" fill="#5f6368"></circle>
</svg>
<div class="badge b-red">A</div>
<span class="sep">›</span>
<svg class="ic-lg" viewBox="0 0 24 24">
<rect x="5" y="5" width="14" height="10" rx="2" fill="#5f6368"></rect>
<circle cx="8" cy="17" r="1.6" fill="#5f6368"></circle>
<circle cx="16" cy="17" r="1.6" fill="#5f6368"></circle>
</svg>
<span class="sep">›</span>
<!-- walk small with 4 indicator -->
<svg class="ic-lg" viewBox="0 0 24 24">
<circle cx="12" cy="5" r="2" fill="#5f6368"></circle>
<path d="M12 7l-2 4-3 2m5-2l3 5" stroke="#5f6368" stroke-width="2" fill="none" stroke-linecap="round"></path>
</svg>
<span class="sep">›</span>
<div class="badge b-blue badge-round">M</div>
<div class="badge b-orange">5</div>
<span class="sep">›</span>
<div class="badge b-blue badge-round">M</div>
</div>
<div class="duration">1 hr 56 min</div>
</div>
<div class="sub">
<div>9:46 PM – 11:42 PM</div>
<div class="price">€2.10</div>
</div>
<div class="note">
in <span style="color:#d93025;">5 min</span> (delayed), <span style="color:#d93025;">25 min</span> (delayed) from République
</div>
</div>
<!-- Card 4 -->
<div class="card">
<div class="route-row">
<div class="segments">
<!-- walk with 7 -->
<svg class="ic-lg" viewBox="0 0 24 24">
<circle cx="12" cy="5" r="2" fill="#5f6368"></circle>
<path d="M12 7l-2 4-3 2m5-2l3 5" stroke="#5f6368" stroke-width="2" fill="none" stroke-linecap="round"></path>
</svg>
<span class="sep">›</span>
<svg class="ic-lg" viewBox="0 0 24 24">
<rect x="5" y="5" width="14" height="10" rx="2" fill="#5f6368"></rect>
<circle cx="8" cy="17" r="1.6" fill="#5f6368"></circle>
<circle cx="16" cy="17" r="1.6" fill="#5f6368"></circle>
</svg>
<span class="sep">›</span>
<!-- walk with 4 -->
<svg class="ic-lg" viewBox="0 0 24 24">
<circle cx="12" cy="5" r="2" fill="#5f6368"></circle>
<path d="M12 7l-2 4-3 2m5-2l3 5" stroke="#5f6368" stroke-width="2" fill="none" stroke-linecap="round"></path>
</svg>
<span class="sep">›</span>
<div class="badge b-blue badge-round">M</div>
<div class="badge b-orange">5</div>
<span class="sep">›</span>
<div class="badge b-yellow">1</div>
</div>
<div class="duration">1 hr 30 min</div>
</div>
<div class="sub">
<div>5:56 AM (Thursday) – 7:26 AM</div>
<div class="price">€2.10</div>
</div>
<div class="note" style="color:#5f6368;">
Scheduled at 6:03 AM, 6:34 AM from Orleans
</div>
</div>
<!-- Card 5 -->
<div class="card">
<div class="route-row">
<div class="segments">
<!-- walk with 7 -->
<svg class="ic-lg" viewBox="0 0 24 24">
<circle cx="12" cy="5" r="2" fill="#5f6368"></circle>
<path d="M12 7l-2 4-3 2m5-2l3 5" stroke="#5f6368" stroke-width="2" fill="none" stroke-linecap="round"></path>
</svg>
<span class="sep">›</span>
<svg class="ic-lg" viewBox="0 0 24 24">
<rect x="5" y="5" width="14" height="10" rx="2" fill="#5f6368"></rect>
<circle cx="8" cy="17" r="1.6" fill="#5f6368"></circle>
<circle cx="16" cy="17" r="1.6" fill="#5f6368"></circle>
</svg>
<span class="sep">›</span>
<div class="badge b-purple">TER</div>
<span class="sep">›</span>
<!-- walk with 3 -->
<svg class="ic-lg" viewBox="0 0 24 24">
<circle cx="12" cy="5" r="2" fill="#5f6368"></circle>
<path d="M12 7l-2 4-3 2m5-2l3 5" stroke="#5f6368" stroke-width="2" fill="none" stroke-linecap="round"></path>
</svg>
<span class="sep">›</span>
<div class="badge b-blue">RER</div>
<div class="badge b-gold">C</div>
<span class="sep">›</span>
<svg class="ic-lg" viewBox="0 0 24 24">
<rect x="3" y="7" width="18" height="8" rx="2" fill="#5f6368"></rect>
<circle cx="7" cy="17" r="1.6" fill="#5f6368"></circle>
<circle cx="17" cy="17" r="1.6" fill="#5f6368"></circle>
</svg>
</div>
<div class="duration">1 hr 36 min</div>
</div>
<div class="sub">
<div>5:56 AM (Thursday) – 7:32 AM</div>
<div class="price">€2.10</div>
</div>
<div class="note" style="color:#5f6368;">
Scheduled at 6:03 AM, 6:34 AM from Orleans
</div>
<div class="alert">
<!-- warning icon -->
<svg class="ic" viewBox="0 0 24 24">
<path d="M12 3l10 18H2L12 3zm0 6v5m0 4h.01" stroke="#d93025" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"></path>
</svg>
<span>Modified schedule</span>
</div>
</div>
</div>
<div class="gesture"></div>
</div>
</body>
</html> |