| <!DOCTYPE html> |
| <html lang="en"> |
| <head> |
| <meta charset="UTF-8"> |
| <title>Flight Results UI</title> |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> |
| <style> |
| body { margin: 0; padding: 0; background: transparent; } |
| #render-target { |
| width: 1080px; |
| height: 2400px; |
| position: relative; |
| overflow: hidden; |
| background: #ffffff; |
| font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; |
| color: #111; |
| } |
| |
| |
| .status-bar { |
| height: 96px; |
| padding: 24px 36px 0 36px; |
| display: flex; |
| align-items: center; |
| justify-content: space-between; |
| color: #6b6b6b; |
| box-sizing: border-box; |
| } |
| .status-time { font-size: 34px; font-weight: 600; letter-spacing: 0.2px; } |
| .status-icons { display: flex; align-items: center; gap: 26px; } |
| .icon { width: 36px; height: 36px; display: inline-block; } |
| |
| |
| .header { |
| padding: 22px 36px 8px 36px; |
| display: flex; |
| align-items: center; |
| justify-content: center; |
| position: relative; |
| box-sizing: border-box; |
| } |
| .back-btn { |
| position: absolute; |
| left: 36px; |
| top: 18px; |
| width: 64px; |
| height: 64px; |
| display: flex; |
| align-items: center; |
| justify-content: center; |
| color: #333; |
| } |
| .title { |
| font-size: 54px; |
| font-weight: 700; |
| letter-spacing: 0.2px; |
| } |
| |
| |
| .date-row { |
| padding: 12px 36px 22px 36px; |
| display: flex; |
| align-items: center; |
| gap: 26px; |
| box-sizing: border-box; |
| } |
| .date-item { |
| padding: 20px 26px; |
| border-radius: 24px; |
| text-align: center; |
| line-height: 1.1; |
| } |
| .date-item .top { font-size: 32px; font-weight: 700; color: #202020; } |
| .date-item .sub { font-size: 26px; color: #8a8a8a; margin-top: 8px; } |
| .date-item.active { |
| background: #FFE9DB; |
| } |
| .date-spacer { |
| height: 44px; |
| width: 2px; |
| background: #E5E5E5; |
| margin-left: 10px; |
| margin-right: 10px; |
| } |
| .calendar-btn { |
| width: 66px; |
| height: 66px; |
| border-radius: 16px; |
| border: 2px solid #E0E0E0; |
| display: flex; |
| align-items: center; |
| justify-content: center; |
| } |
| |
| |
| .list-area { |
| position: absolute; |
| left: 0; |
| right: 0; |
| top: 320px; |
| bottom: 120px; |
| background: #F6F6F6; |
| overflow: hidden; |
| } |
| .cards { |
| padding: 24px 36px 180px 36px; |
| box-sizing: border-box; |
| } |
| |
| .card { |
| background: #ffffff; |
| border-radius: 28px; |
| padding: 32px; |
| margin-bottom: 34px; |
| box-shadow: 0 0 0 1px rgba(0,0,0,0.02); |
| } |
| .card-content { |
| display: grid; |
| grid-template-columns: 1fr 1fr; |
| column-gap: 36px; |
| } |
| .col { display: flex; flex-direction: column; gap: 22px; } |
| |
| |
| .ph { |
| height: 48px; |
| background: #E9E9E9; |
| border-radius: 20px; |
| } |
| .w-40 { width: 40%; } |
| .w-55 { width: 55%; } |
| .w-65 { width: 65%; } |
| .w-70 { width: 70%; } |
| .w-85 { width: 85%; } |
| .w-90 { width: 90%; } |
| |
| .price-box { |
| width: 220px; |
| height: 140px; |
| background: #E5E5E5; |
| border-radius: 24px; |
| align-self: flex-end; |
| } |
| |
| |
| .gesture { |
| position: absolute; |
| bottom: 0; |
| left: 0; |
| right: 0; |
| height: 120px; |
| background: #000000; |
| display: flex; |
| align-items: center; |
| justify-content: center; |
| } |
| .pill { |
| width: 300px; |
| height: 10px; |
| border-radius: 6px; |
| background: #E0E0E0; |
| opacity: 0.9; |
| } |
| </style> |
| </head> |
| <body> |
| <div id="render-target"> |
|
|
| |
| <div class="status-bar"> |
| <div class="status-time">12:29</div> |
| <div class="status-icons"> |
| |
| <svg class="icon" viewBox="0 0 24 24" fill="#9b9b9b" aria-label="DND"> |
| <circle cx="12" cy="12" r="10"></circle> |
| <rect x="6" y="11" width="12" height="2" fill="#ffffff"></rect> |
| </svg> |
| |
| <svg class="icon" viewBox="0 0 24 24" aria-label="Signal"> |
| <path d="M2 18c4-4 16-4 20 0l-2 2c-3-3-13-3-16 0L2 18zm4 4c3-3 11-3 14 0l-2 2c-2-2-8-2-10 0l-2-2z" fill="#8b8b8b"></path> |
| </svg> |
| |
| <svg class="icon" viewBox="0 0 32 24" aria-label="Battery"> |
| <rect x="2" y="5" width="24" height="14" rx="3" ry="3" fill="#8b8b8b"></rect> |
| <rect x="26" y="9" width="4" height="6" rx="1" ry="1" fill="#8b8b8b"></rect> |
| <rect x="4" y="7" width="18" height="10" rx="2" ry="2" fill="#ffffff"></rect> |
| </svg> |
| </div> |
| </div> |
|
|
| |
| <div class="header"> |
| <div class="back-btn" aria-label="Back"> |
| <svg width="44" height="44" viewBox="0 0 24 24" fill="none" stroke="#333" stroke-width="2.2" stroke-linecap="round" stroke-linejoin="round"> |
| <path d="M15 18l-6-6 6-6"></path> |
| </svg> |
| </div> |
| <div class="title">Amsterdam ⇄ London</div> |
| </div> |
|
|
| |
| <div class="date-row"> |
| <div class="date-item"> |
| <div class="top">26 Oct</div> |
| <div class="sub">Thu</div> |
| </div> |
| <div class="date-item active"> |
| <div class="top">27 Oct</div> |
| <div class="sub">Fri</div> |
| </div> |
| <div class="date-item"> |
| <div class="top">28 Oct</div> |
| <div class="sub">Sat</div> |
| </div> |
| <div class="date-item"> |
| <div class="top">29 Oct</div> |
| <div class="sub">Sun</div> |
| </div> |
| <div class="date-item"> |
| <div class="top">30 Oct</div> |
| <div class="sub">Mon</div> |
| </div> |
| <div class="date-item"> |
| <div class="top">31 Oct</div> |
| <div class="sub">Tue</div> |
| </div> |
| <div class="date-spacer"></div> |
| <div class="calendar-btn" aria-label="Calendar"> |
| <svg width="34" height="34" viewBox="0 0 24 24" fill="none" stroke="#6b6b6b" stroke-width="1.8" stroke-linecap="round"> |
| <rect x="3" y="4" width="18" height="16" rx="2"></rect> |
| <path d="M8 2v4M16 2v4M3 9h18"></path> |
| </svg> |
| </div> |
| </div> |
|
|
| |
| <div class="list-area"> |
| <div class="cards"> |
|
|
| |
| <div class="card"> |
| <div class="card-content"> |
| <div class="col"> |
| <div class="ph w-40"></div> |
| <div class="ph w-90"></div> |
| <div class="ph w-55"></div> |
| </div> |
| <div class="col"> |
| <div class="ph w-35 w-55"></div> |
| <div class="ph w-85"></div> |
| <div class="price-box"></div> |
| </div> |
| </div> |
| </div> |
|
|
| |
| <div class="card"> |
| <div class="card-content"> |
| <div class="col"> |
| <div class="ph w-40"></div> |
| <div class="ph w-90"></div> |
| <div class="ph w-55"></div> |
| </div> |
| <div class="col"> |
| <div class="ph w-40"></div> |
| <div class="ph w-85"></div> |
| <div class="price-box"></div> |
| </div> |
| </div> |
| </div> |
|
|
| |
| <div class="card"> |
| <div class="card-content"> |
| <div class="col"> |
| <div class="ph w-40"></div> |
| <div class="ph w-90"></div> |
| <div class="ph w-55"></div> |
| </div> |
| <div class="col"> |
| <div class="ph w-40"></div> |
| <div class="ph w-85"></div> |
| <div class="price-box"></div> |
| </div> |
| </div> |
| </div> |
|
|
| |
| <div class="card"> |
| <div class="card-content"> |
| <div class="col"> |
| <div class="ph w-40"></div> |
| <div class="ph w-90"></div> |
| <div class="ph w-55"></div> |
| </div> |
| <div class="col"> |
| <div class="ph w-40"></div> |
| <div class="ph w-85"></div> |
| <div class="price-box"></div> |
| </div> |
| </div> |
| </div> |
|
|
| |
| <div class="card"> |
| <div class="card-content"> |
| <div class="col"> |
| <div class="ph w-40"></div> |
| <div class="ph w-90"></div> |
| <div class="ph w-55"></div> |
| </div> |
| <div class="col"> |
| <div class="ph w-40"></div> |
| <div class="ph w-85"></div> |
| <div class="price-box"></div> |
| </div> |
| </div> |
| </div> |
|
|
| </div> |
| </div> |
|
|
| |
| <div class="gesture"> |
| <div class="pill"></div> |
| </div> |
|
|
| </div> |
| </body> |
| </html> |