| <!DOCTYPE html> |
| <html lang="en"> |
| <head> |
| <meta charset="UTF-8"> |
| <meta name="viewport" content="width=1080, initial-scale=1.0"> |
| <title>Transit Detail</title> |
| <style> |
| :root{ |
| --orange:#E67E22; |
| --text:#222; |
| --muted:#757575; |
| --line:#E0E0E0; |
| --bg:#FFFFFF; |
| --img-bg:#E0E0E0; |
| --img-border:#BDBDBD; |
| --green:#0FA15A; |
| } |
| body{ margin:0; padding:0; background:transparent; font-family: Roboto, Arial, Helvetica, sans-serif; } |
| #render-target{ |
| width:1080px; height:2400px; |
| position:relative; overflow:hidden; |
| background:#fff; |
| color:var(--text); |
| } |
| |
| |
| .status-bar{ |
| position:absolute; top:0; left:0; right:0; |
| height:84px; |
| background:rgba(0,0,0,0.25); |
| color:#fff; font-size:32px; |
| display:flex; align-items:center; justify-content:space-between; |
| padding:0 32px; |
| z-index:5; |
| } |
| .status-icons{ display:flex; gap:28px; align-items:center; opacity:0.9; } |
| .status-dot{ width:10px; height:10px; background:#fff; border-radius:50%; display:inline-block; opacity:0.8; } |
| |
| |
| .hero{ |
| width:100%; height:420px; position:relative; |
| } |
| .hero .img{ |
| width:100%; height:100%; |
| background:var(--img-bg); |
| border-bottom:1px solid var(--img-border); |
| display:flex; align-items:center; justify-content:center; |
| color:#555; font-size:36px; letter-spacing:0.2px; |
| } |
| .back-btn{ |
| position:absolute; left:28px; top:160px; |
| width:64px; height:64px; display:flex; align-items:center; justify-content:center; |
| } |
| |
| |
| .agency{ |
| background:#fff; |
| padding:34px 40px; |
| display:flex; align-items:center; gap:24px; |
| border-bottom:1px solid var(--line); |
| } |
| .agency h1{ margin:0; font-size:44px; font-weight:700; letter-spacing:0.2px; } |
| .go-logo{ width:72px; height:36px; } |
| |
| |
| .route-card{ |
| background:#F4F4F4; |
| padding:40px; |
| border-bottom:1px solid var(--line); |
| display:grid; |
| grid-template-columns:120px 1fr; |
| column-gap:24px; |
| } |
| .timeline{ |
| position:relative; |
| width:14px; height:320px; background:var(--orange); border-radius:8px; margin:8px 0 0 40px; |
| } |
| .timeline::before, .timeline::after{ |
| content:""; position:absolute; left:50%; transform:translateX(-50%); |
| width:40px; height:40px; border-radius:50%; border:8px solid var(--orange); background:#F4F4F4; |
| } |
| .timeline::before{ top:-14px; } |
| .timeline::after{ bottom:-14px; } |
| .route-title{ font-size:36px; font-weight:500; margin:6px 0 22px 0; } |
| .detail-row{ display:flex; align-items:center; gap:18px; margin-bottom:18px; } |
| .duration{ font-size:34px; font-weight:600; } |
| .mid-dot{ color:var(--muted); } |
| .bus-icon{ width:36px; height:30px; opacity:0.6; } |
| .pill{ |
| background:var(--orange); color:#fff; font-weight:700; |
| font-size:30px; padding:6px 14px; border-radius:10px; |
| } |
| .show-stops{ color:var(--muted); font-size:30px; display:flex; align-items:center; gap:14px; } |
| .dest{ font-size:36px; margin-top:36px; } |
| |
| |
| .section{ |
| padding:40px; background:#fff; border-bottom:1px solid var(--line); |
| } |
| .section h2{ margin:0 0 28px 0; font-size:44px; font-weight:700; } |
| .info-row{ display:flex; justify-content:space-between; align-items:flex-start; padding:22px 0; border-top:1px solid var(--line); } |
| .info-row:first-of-type{ border-top:none; } |
| .info-left h3{ margin:0 0 10px 0; font-size:34px; font-weight:600; } |
| .info-left p{ margin:0; font-size:30px; color:var(--muted); } |
| .info-right{ font-size:32px; font-weight:600; } |
| |
| |
| .map .img{ |
| width:100%; height:460px; |
| background:var(--img-bg); |
| border:1px solid var(--img-border); |
| display:flex; align-items:center; justify-content:center; |
| color:#555; font-size:34px; |
| } |
| </style> |
| </head> |
| <body> |
| <div id="render-target"> |
|
|
| |
| <div class="status-bar"> |
| <div>10:14</div> |
| <div class="status-icons"> |
| <span>🔔</span> |
| <span>🔒</span> |
| <span style="font-weight:700;">N</span> |
| <span class="status-dot"></span> |
| <span>📶</span> |
| <span>🔋</span> |
| </div> |
| </div> |
|
|
| |
| <div class="hero"> |
| <div class="img">[IMG: Bus at station at dusk]</div> |
| <div class="back-btn"> |
| <svg width="48" height="48" viewBox="0 0 48 48"> |
| <path d="M30 10 L16 24 L30 38" fill="none" stroke="#ffffff" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/> |
| </svg> |
| </div> |
| </div> |
|
|
| |
| <div class="agency"> |
| <svg class="go-logo" viewBox="0 0 80 40"> |
| <circle cx="20" cy="20" r="16" fill="var(--green)"></circle> |
| <circle cx="44" cy="20" r="16" fill="var(--green)"></circle> |
| <rect x="62" y="10" width="16" height="20" rx="4" fill="var(--green)"></rect> |
| </svg> |
| <h1>GO Transit</h1> |
| </div> |
|
|
| |
| <div class="route-card"> |
| <div> |
| <div class="timeline"></div> |
| </div> |
| <div> |
| <div class="route-title">Durham College Oshawa GO</div> |
|
|
| <div class="detail-row"> |
| <svg class="bus-icon" viewBox="0 0 64 40"> |
| <rect x="6" y="8" width="44" height="20" rx="4" fill="#9E9E9E"></rect> |
| <rect x="10" y="12" width="16" height="8" fill="#FFFFFF"></rect> |
| <rect x="30" y="12" width="16" height="8" fill="#FFFFFF"></rect> |
| <circle cx="18" cy="34" r="4" fill="#9E9E9E"></circle> |
| <circle cx="42" cy="34" r="4" fill="#9E9E9E"></circle> |
| </svg> |
| <div class="duration">1 hr 7 min <span class="mid-dot">·</span> Bus</div> |
| <div class="pill">88</div> |
| </div> |
|
|
| <div class="show-stops">Show Stops |
| <svg width="26" height="26" viewBox="0 0 24 24"> |
| <path d="M6 9 L12 15 L18 9" fill="none" stroke="#757575" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> |
| </svg> |
| </div> |
|
|
| <div class="dest">Crawford Dr. @ Harper Rd. Park & Ride</div> |
| </div> |
| </div> |
|
|
| |
| <div class="section"> |
| <h2>Information</h2> |
|
|
| <div class="info-row"> |
| <div class="info-left"> |
| <h3>Frequency</h3> |
| <p>Every 2 hours</p> |
| </div> |
| <div class="info-right"></div> |
| </div> |
|
|
| <div class="info-row"> |
| <div class="info-left"> |
| <h3>Pricing</h3> |
| <p>Expect to pay</p> |
| </div> |
| <div class="info-right">$8 - $12</div> |
| </div> |
| </div> |
|
|
| |
| <div class="section map"> |
| <h2>Map</h2> |
| <div class="img">[IMG: Map showing bus route path]</div> |
| </div> |
|
|
| </div> |
| </body> |
| </html> |