| <!DOCTYPE html> |
| <html lang="en"> |
| <head> |
| <meta charset="UTF-8"> |
| <meta name="viewport" content="width=1080, initial-scale=1.0"> |
| <title>Trip Details - Mock</title> |
| <style> |
| body { margin: 0; padding: 0; background: transparent; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; } |
| #render-target { |
| width: 1080px; |
| height: 2400px; |
| position: relative; |
| overflow: hidden; |
| background: #ffffff; |
| color: #111; |
| } |
| |
| |
| .status-bar { |
| position: absolute; |
| top: 0; |
| left: 0; |
| width: 1080px; |
| height: 96px; |
| padding: 0 36px; |
| display: flex; |
| align-items: center; |
| justify-content: space-between; |
| color: #2b2b2b; |
| font-size: 34px; |
| } |
| .status-icons { |
| display: flex; |
| gap: 16px; |
| align-items: center; |
| } |
| .dot-icon { |
| width: 24px; height: 24px; border-radius: 50%; background: #9e9e9e; |
| } |
| .wifi { |
| width: 32px; height: 20px; border: 3px solid #555; border-top: none; border-radius: 0 0 8px 8px; |
| } |
| .battery { |
| width: 44px; height: 22px; border: 3px solid #555; border-radius: 4px; position: relative; |
| } |
| .battery:after { |
| content: ""; position: absolute; right: -6px; top: 6px; width: 6px; height: 10px; background: #555; border-radius: 2px; |
| } |
| |
| |
| .header { |
| position: absolute; |
| top: 96px; |
| left: 0; |
| width: 1080px; |
| padding: 24px 36px 16px 36px; |
| background: #fff; |
| display: flex; |
| align-items: flex-start; |
| gap: 20px; |
| z-index: 2; |
| } |
| .back-btn { |
| width: 72px; height: 72px; display: flex; align-items: center; justify-content: center; |
| } |
| .title-wrap { |
| display: flex; flex-direction: column; |
| } |
| .title { |
| font-weight: 800; |
| font-size: 58px; |
| line-height: 1.1; |
| letter-spacing: 0.2px; |
| } |
| .subtitle { |
| margin-top: 8px; |
| font-size: 34px; |
| color: #6b6f76; |
| } |
| .actions { |
| margin-left: auto; |
| margin-top: 6px; |
| display: flex; |
| align-items: center; |
| gap: 8px; |
| } |
| .icon-btn { |
| width: 64px; height: 64px; border-radius: 50%; display: flex; align-items: center; justify-content: center; |
| } |
| |
| |
| .banner { |
| position: absolute; |
| top: 232px; |
| left: 0; |
| width: 1080px; |
| height: 420px; |
| background: #E0E0E0; |
| border-top: 1px solid #BDBDBD; |
| border-bottom: 1px solid #BDBDBD; |
| display: flex; |
| align-items: center; |
| justify-content: center; |
| color: #757575; |
| font-size: 34px; |
| } |
| |
| |
| .menu-card { |
| position: absolute; |
| top: 320px; |
| right: 36px; |
| width: 520px; |
| background: #ffffff; |
| border-radius: 20px; |
| box-shadow: 0 10px 28px rgba(0,0,0,0.18); |
| z-index: 5; |
| overflow: hidden; |
| } |
| .menu-item { |
| padding: 34px 36px; |
| font-size: 40px; |
| color: #262626; |
| border-bottom: 1px solid #f0f0f0; |
| } |
| .menu-item:last-child { border-bottom: none; } |
| |
| |
| .content { |
| position: absolute; |
| top: 700px; |
| left: 0; |
| right: 0; |
| padding: 54px 36px 0 36px; |
| } |
| .section-title { |
| font-size: 52px; |
| font-weight: 700; |
| color: #222; |
| margin-bottom: 28px; |
| } |
| .note-card { |
| width: 100%; |
| background: #fff; |
| border: 2px solid #d7e0e6; |
| border-radius: 24px; |
| overflow: hidden; |
| } |
| .note-body { |
| height: 420px; |
| background: #fafcfd; |
| } |
| .note-footer { |
| height: 140px; |
| background: #ffffff; |
| border-top: 2px solid #d7e0e6; |
| display: flex; |
| align-items: center; |
| justify-content: space-between; |
| padding: 0 28px 0 28px; |
| } |
| .footer-left { |
| display: flex; |
| align-items: center; |
| gap: 16px; |
| color: #0a7285; |
| font-size: 28px; |
| } |
| .add-btn { |
| padding: 20px 36px; |
| background: #2f3740; |
| color: #fff; |
| border-radius: 22px; |
| font-size: 36px; |
| font-weight: 700; |
| } |
| |
| |
| .nav-bar { |
| position: absolute; |
| bottom: 0; |
| left: 0; |
| width: 1080px; |
| height: 120px; |
| background: #000000; |
| display: flex; |
| align-items: center; |
| justify-content: center; |
| } |
| .home-pill { |
| width: 180px; height: 10px; background: #e5e5e5; border-radius: 8px; |
| } |
| </style> |
| </head> |
| <body> |
| <div id="render-target"> |
|
|
| |
| <div class="status-bar"> |
| <div>6:00</div> |
| <div class="status-icons"> |
| <div class="dot-icon"></div> |
| <div class="dot-icon" style="background:#616161;"></div> |
| <div class="dot-icon" style="background:#757575;"></div> |
| <div class="dot-icon" style="background:#9e9e9e;"></div> |
| <div class="wifi"></div> |
| <div class="battery"></div> |
| </div> |
| </div> |
|
|
| |
| <div class="header"> |
| <div class="back-btn" aria-label="Back"> |
| <svg width="48" height="48" viewBox="0 0 24 24"> |
| <path d="M15.5 19l-7-7 7-7" stroke="#1f1f1f" stroke-width="2.5" fill="none" stroke-linecap="round" stroke-linejoin="round"></path> |
| </svg> |
| </div> |
| <div class="title-wrap"> |
| <div class="title">Honolulu Trip</div> |
| <div class="subtitle">Wed, Jan 24 – Fri, Jan 26</div> |
| </div> |
| <div class="actions"> |
| <div class="icon-btn" aria-label="More"> |
| <svg width="44" height="44" viewBox="0 0 24 24" fill="#333"> |
| <circle cx="12" cy="5" r="2"></circle> |
| <circle cx="12" cy="12" r="2"></circle> |
| <circle cx="12" cy="19" r="2"></circle> |
| </svg> |
| </div> |
| </div> |
| </div> |
|
|
| |
| <div class="banner">[IMG: Honolulu beach skyline]</div> |
|
|
| |
| <div class="menu-card"> |
| <div class="menu-item">Disable notifications</div> |
| <div class="menu-item">Edit Trip</div> |
| <div class="menu-item">Add event</div> |
| <div class="menu-item">Delete Trip</div> |
| <div class="menu-item">Merge Trip</div> |
| </div> |
|
|
| |
| <div class="content"> |
| <div class="section-title">Notes</div> |
| <div class="note-card"> |
| <div class="note-body"></div> |
| <div class="note-footer"> |
| <div class="footer-left"> |
| <svg width="44" height="44" viewBox="0 0 24 24"> |
| <path d="M12 2C8.7 2 6 4.7 6 8c0 4.2 6 12 6 12s6-7.8 6-12c0-3.3-2.7-6-6-6zm0 8.5a2.5 2.5 0 1 1 0-5 2.5 2.5 0 0 1 0 5z" fill="#0a7285"></path> |
| </svg> |
| </div> |
| <div class="add-btn">Add note</div> |
| </div> |
| </div> |
| </div> |
|
|
| |
| <div class="nav-bar"> |
| <div class="home-pill"></div> |
| </div> |
|
|
| </div> |
| </body> |
| </html> |