| <!DOCTYPE html> |
| <html lang="en"> |
| <head> |
| <meta charset="UTF-8"> |
| <meta name="viewport" content="width=1080, initial-scale=1.0"> |
| <title>Travel Results - New York to Newark</title> |
| <style> |
| body { margin: 0; padding: 0; background: transparent; } |
| #render-target { |
| width: 1080px; |
| height: 2400px; |
| position: relative; |
| overflow: hidden; |
| background: #F6F8FB; |
| font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; |
| color: #2B3A40; |
| } |
| |
| |
| .status-bar { |
| height: 88px; |
| padding: 20px 36px; |
| display: flex; |
| align-items: center; |
| justify-content: space-between; |
| font-size: 28px; |
| color: #738A97; |
| } |
| .status-left, .status-right { display: flex; align-items: center; gap: 22px; } |
| .icon-battery, .icon-signal, .icon-wifi { |
| width: 34px; height: 28px; |
| } |
| .icon-battery svg, .icon-signal svg, .icon-wifi svg { display: block; } |
| |
| |
| .header { |
| padding: 8px 36px 24px 36px; |
| border-bottom: 1px solid #E3EBF2; |
| } |
| .title-row { |
| display: flex; |
| align-items: center; |
| gap: 18px; |
| } |
| .back-btn { |
| width: 56px; height: 56px; border-radius: 16px; |
| display: flex; align-items: center; justify-content: center; |
| background: #FFFFFF; border: 1px solid #DFE8EE; |
| } |
| .page-title { |
| font-size: 52px; font-weight: 700; line-height: 1.2; |
| margin: 4px auto 0 auto; text-align: center; width: 100%; |
| } |
| .subtitle { |
| text-align: center; |
| color: #7C8E99; |
| font-size: 28px; |
| margin-top: 8px; |
| } |
| |
| |
| .chips { |
| display: flex; |
| gap: 18px; |
| margin-top: 24px; |
| padding-bottom: 24px; |
| justify-content: space-between; |
| } |
| .chip { |
| flex: 1; |
| min-width: 0; |
| background: #FFFFFF; |
| border: 2px solid #DDE6EE; |
| color: #5A6E7A; |
| border-radius: 22px; |
| padding: 26px 28px; |
| font-size: 28px; |
| display: flex; align-items: center; justify-content: space-between; |
| } |
| .chip-label { font-weight: 700; letter-spacing: 0.2px; } |
| .chip-sub { font-weight: 600; color: #8BA5AE; } |
| .chip.primary { |
| background: #07C3CF; |
| border-color: #07C3CF; |
| color: #FFFFFF; |
| } |
| .chip.primary .chip-sub { color: #E7FCFF; } |
| .chip-icon { margin-right: 14px; display: inline-flex; align-items: center; } |
| |
| |
| .content { padding: 24px 36px 0 36px; } |
| .card { |
| background: #FFFFFF; |
| border: 1px solid #DDE6EE; |
| border-radius: 28px; |
| padding: 32px; |
| margin-bottom: 26px; |
| box-shadow: 0 2px 0 rgba(0,0,0,0.02); |
| } |
| .card-header { |
| display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; |
| } |
| .card-left { |
| display: flex; align-items: center; gap: 16px; |
| font-weight: 800; color: #5F7180; letter-spacing: 0.5px; font-size: 28px; |
| } |
| .rating { display: flex; align-items: center; gap: 8px; color: #07C3CF; font-weight: 700; } |
| .price { color: #07C3CF; font-size: 34px; font-weight: 800; } |
| |
| .time-row { |
| display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; |
| gap: 18px; margin: 8px 0 14px; |
| } |
| .time { |
| font-size: 44px; font-weight: 800; color: #2B3A40; |
| } |
| .duration { |
| display: flex; align-items: center; gap: 10px; color: #8BA5AE; font-weight: 700; font-size: 26px; |
| } |
| .arrow { |
| width: 120px; height: 2px; background: #CAD8E2; position: relative; |
| } |
| .arrow:after { |
| content: ""; position: absolute; right: -6px; top: -4px; width: 0; height: 0; |
| border-left: 10px solid #CAD8E2; border-top: 6px solid transparent; border-bottom: 6px solid transparent; |
| } |
| |
| .route { |
| display: grid; grid-template-columns: 1fr 1fr; gap: 18px; color: #5A6E7A; font-size: 28px; margin-bottom: 18px; |
| } |
| |
| .badge-row { display: flex; gap: 16px; flex-wrap: wrap; } |
| .pill { |
| padding: 16px 22px; border-radius: 24px; font-size: 26px; font-weight: 700; |
| } |
| .pill.outline { background: #EEF3F7; color: #5F7180; } |
| .pill.teal { background: #E6FAF9; color: #07C3CF; } |
| .pill.purple { background: #EFE7FB; color: #7E60C9; } |
| |
| |
| .divider { height: 1px; background: #E3EBF2; margin: 12px 0; } |
| |
| |
| .home-indicator { |
| position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%); |
| width: 360px; height: 10px; background: #101216; border-radius: 6px; opacity: 0.9; |
| } |
| |
| |
| .icon-sml { width: 32px; height: 32px; } |
| .icon-transport { width: 40px; height: 40px; } |
| .details-caret { |
| width: 18px; height: 18px; margin-left: 8px; |
| } |
| </style> |
| </head> |
| <body> |
| <div id="render-target"> |
|
|
| |
| <div class="status-bar"> |
| <div class="status-left"> |
| <div>9:39</div> |
| <div>4°</div> |
| <div class="icon-signal"> |
| <svg viewBox="0 0 24 24"> |
| <rect x="2" y="12" width="3" height="10" fill="#8FA3AE"></rect> |
| <rect x="8" y="8" width="3" height="14" fill="#8FA3AE"></rect> |
| <rect x="14" y="4" width="3" height="18" fill="#8FA3AE"></rect> |
| <rect x="20" y="2" width="3" height="20" fill="#8FA3AE"></rect> |
| </svg> |
| </div> |
| <div>82°</div> |
| <div>•</div> |
| </div> |
| <div class="status-right"> |
| <div class="icon-wifi"> |
| <svg viewBox="0 0 24 24"> |
| <path d="M2 8c5-4 15-4 20 0" stroke="#8FA3AE" stroke-width="2" fill="none"/> |
| <path d="M5 12c4-3 10-3 14 0" stroke="#8FA3AE" stroke-width="2" fill="none"/> |
| <circle cx="12" cy="16" r="2" fill="#8FA3AE"/> |
| </svg> |
| </div> |
| <div class="icon-battery"> |
| <svg viewBox="0 0 30 18"> |
| <rect x="1" y="2" width="24" height="14" rx="3" ry="3" stroke="#8FA3AE" fill="none" stroke-width="2"/> |
| <rect x="4" y="5" width="18" height="8" fill="#8FA3AE"/> |
| <rect x="26" y="6" width="3" height="6" rx="1" fill="#8FA3AE"/> |
| </svg> |
| </div> |
| </div> |
| </div> |
|
|
| |
| <div class="header"> |
| <div class="title-row"> |
| <div class="back-btn"> |
| <svg viewBox="0 0 28 28" width="28" height="28"> |
| <path d="M18 4 L8 14 L18 24" stroke="#6E8190" stroke-width="3" fill="none" stroke-linecap="round" stroke-linejoin="round"/> |
| </svg> |
| </div> |
| <div class="page-title">New York to Newark</div> |
| </div> |
| <div class="subtitle">Departure on Monday, 8/14</div> |
|
|
| <div class="chips"> |
| <div class="chip"> |
| <div class="chip-label"> |
| <span class="chip-icon"> |
| <svg class="icon-sml" viewBox="0 0 24 24"> |
| <rect x="3" y="4" width="18" height="3" rx="1" fill="#8FA3AE"/> |
| <rect x="6" y="10" width="12" height="3" rx="1" fill="#8FA3AE"/> |
| <rect x="9" y="16" width="6" height="3" rx="1" fill="#8FA3AE"/> |
| </svg> |
| </span> |
| FILTERS |
| </div> |
| </div> |
| <div class="chip primary"> |
| <div class="chip-label">WANDERLIST</div> |
| <div class="chip-sub">48 trips</div> |
| </div> |
| <div class="chip"> |
| <div class="chip-label">CHEAPEST</div> |
| <div class="chip-sub">$5.00</div> |
| </div> |
| <div class="chip"> |
| <div class="chip-label">EARLIEST</div> |
| <div class="chip-sub">3:20a</div> |
| </div> |
| </div> |
| </div> |
|
|
| <div class="content"> |
|
|
| |
| <div class="card"> |
| <div class="card-header"> |
| <div class="card-left"> |
| <svg class="icon-transport" viewBox="0 0 28 28"> |
| <rect x="4" y="6" width="20" height="12" rx="2" fill="#C9D6DF"/> |
| <rect x="7" y="9" width="4" height="3" fill="#FFFFFF"/> |
| <rect x="17" y="9" width="4" height="3" fill="#FFFFFF"/> |
| <circle cx="9" cy="21" r="2" fill="#C9D6DF"/> |
| <circle cx="19" cy="21" r="2" fill="#C9D6DF"/> |
| </svg> |
| <div>AMTRAK NORTHEAST REG...</div> |
| <div class="rating"> |
| <svg viewBox="0 0 24 24" width="22" height="22"> |
| <path d="M12 2l3 6 7 1-5 5 1 7-6-3-6 3 1-7-5-5 7-1z" fill="#07C3CF"/> |
| </svg> |
| <span>4.5</span> |
| </div> |
| </div> |
| <div class="price">$5.00</div> |
| </div> |
|
|
| <div class="time-row"> |
| <div class="time">3:20 AM</div> |
| <div class="duration"> |
| <span>0h 15m</span> |
| <span class="arrow"></span> |
| </div> |
| <div class="time">3:35 AM</div> |
| </div> |
|
|
| <div class="route"> |
| <div>NY Moynihan Train Hall ...</div> |
| <div>Newark Penn Station</div> |
| </div> |
|
|
| <div class="badge-row"> |
| <div class="pill outline">Details |
| <svg class="details-caret" viewBox="0 0 20 20"> |
| <path d="M5 7l5 6 5-6" stroke="#5F7180" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"/> |
| </svg> |
| </div> |
| <div class="pill outline">0 transfers</div> |
| <div class="pill teal">E-ticket</div> |
| </div> |
| </div> |
|
|
| |
| <div class="card"> |
| <div class="card-header"> |
| <div class="card-left"> |
| <svg class="icon-transport" viewBox="0 0 28 28"> |
| <rect x="3" y="8" width="22" height="10" rx="2" fill="#C9D6DF"/> |
| <rect x="6" y="10" width="5" height="3" fill="#FFFFFF"/> |
| <rect x="17" y="10" width="5" height="3" fill="#FFFFFF"/> |
| <circle cx="9" cy="21" r="2" fill="#C9D6DF"/> |
| <circle cx="19" cy="21" r="2" fill="#C9D6DF"/> |
| </svg> |
| <div>AMTRAK ACELA</div> |
| <div class="rating"> |
| <svg viewBox="0 0 24 24" width="22" height="22"> |
| <path d="M12 2l3 6 7 1-5 5 1 7-6-3-6 3 1-7-5-5 7-1z" fill="#07C3CF"/> |
| </svg> |
| <span>4.5</span> |
| </div> |
| </div> |
| <div class="price">$46.00</div> |
| </div> |
|
|
| <div class="time-row"> |
| <div class="time">6:00 PM</div> |
| <div class="duration"> |
| <span>0h 13m</span> |
| <span class="arrow"></span> |
| </div> |
| <div class="time">6:13 PM</div> |
| </div> |
|
|
| <div class="route"> |
| <div>NY Moynihan Train Hall ...</div> |
| <div>Newark Penn Station</div> |
| </div> |
|
|
| <div class="badge-row"> |
| <div class="pill outline">Details |
| <svg class="details-caret" viewBox="0 0 20 20"> |
| <path d="M5 7l5 6 5-6" stroke="#5F7180" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"/> |
| </svg> |
| </div> |
| <div class="pill outline">0 transfers</div> |
| <div class="pill teal">E-ticket</div> |
| <div class="pill purple">Luxury</div> |
| </div> |
| </div> |
|
|
| |
| <div class="card"> |
| <div class="card-header"> |
| <div class="card-left"> |
| <svg class="icon-transport" viewBox="0 0 32 24"> |
| <rect x="4" y="9" width="18" height="8" rx="3" fill="#C9D6DF"/> |
| <circle cx="9" cy="19" r="2" fill="#C9D6DF"/> |
| <circle cx="19" cy="19" r="2" fill="#C9D6DF"/> |
| </svg> |
| <div>RENTALCARS.COM</div> |
| </div> |
| <div class="price">From $30.00</div> |
| </div> |
| <div style="font-size: 34px; font-weight: 800; color:#2B3A40; margin-bottom: 8px;">Find cheap rental cars</div> |
| <div style="font-size: 28px; color:#5A6E7A;">Find great deals on cheap cars in the area.</div> |
| </div> |
|
|
| |
| <div class="card"> |
| <div class="card-header"> |
| <div class="card-left"> |
| <svg class="icon-transport" viewBox="0 0 28 28"> |
| <rect x="3" y="8" width="22" height="10" rx="2" fill="#C9D6DF"/> |
| <rect x="6" y="10" width="15" height="3" fill="#FFFFFF"/> |
| <circle cx="9" cy="21" r="2" fill="#C9D6DF"/> |
| <circle cx="19" cy="21" r="2" fill="#C9D6DF"/> |
| </svg> |
| <div>FLIXBUS US</div> |
| </div> |
| <div class="price">$17.99</div> |
| </div> |
|
|
| <div class="time-row"> |
| <div class="time">10:30 PM</div> |
| <div class="duration"> |
| <span>0h 20m</span> |
| <span class="arrow"></span> |
| </div> |
| <div class="time">10:50 PM</div> |
| </div> |
|
|
| <div class="route"> |
| <div>300-310 W 31 St (SW C...</div> |
| <div>1 Raymond Plaza W</div> |
| </div> |
|
|
| <div class="badge-row"> |
| <div class="pill outline">Details |
| <svg class="details-caret" viewBox="0 0 20 20"> |
| <path d="M5 7l5 6 5-6" stroke="#5F7180" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"/> |
| </svg> |
| </div> |
| <div class="pill outline">0 transfers</div> |
| <div class="pill teal">E-ticket</div> |
| </div> |
| </div> |
|
|
| </div> |
|
|
| <div class="home-indicator"></div> |
| </div> |
| </body> |
| </html> |