| <!DOCTYPE html> |
| <html lang="en"> |
| <head> |
| <meta charset="UTF-8"> |
| <meta name="viewport" content="width=1080, initial-scale=1.0"> |
| <title>Create a Trip</title> |
| <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 Neue", Arial, sans-serif; |
| color: #111; |
| } |
| |
| |
| .status-bar { |
| height: 100px; |
| background: #0e1215; |
| color: #e8f0f7; |
| display: flex; |
| align-items: center; |
| padding: 0 36px; |
| font-size: 36px; |
| box-sizing: border-box; |
| } |
| .status-bar .right { |
| margin-left: auto; |
| display: flex; |
| align-items: center; |
| gap: 18px; |
| } |
| .icon-dot { |
| width: 20px; |
| height: 20px; |
| background: #d8dee4; |
| border-radius: 50%; |
| opacity: 0.9; |
| } |
| .battery { |
| width: 40px; |
| height: 20px; |
| border: 2px solid #d8dee4; |
| border-radius: 4px; |
| position: relative; |
| } |
| .battery::after { |
| content: ""; |
| position: absolute; |
| right: -6px; |
| top: 5px; |
| width: 4px; |
| height: 10px; |
| background: #d8dee4; |
| border-radius: 1px; |
| } |
| .battery .level { |
| height: 100%; |
| width: 70%; |
| background: #d8dee4; |
| } |
| |
| |
| .app-bar { |
| height: 160px; |
| display: flex; |
| align-items: center; |
| padding: 0 36px; |
| box-sizing: border-box; |
| background: #ffffff; |
| box-shadow: 0 1px 0 rgba(0,0,0,0.08); |
| } |
| .app-bar .title { |
| flex: 1; |
| text-align: center; |
| font-size: 54px; |
| font-weight: 700; |
| color: #1a1a1a; |
| letter-spacing: -0.2px; |
| } |
| .app-bar .left, |
| .app-bar .right { |
| width: 160px; |
| display: flex; |
| align-items: center; |
| justify-content: center; |
| } |
| .app-bar .right .save { |
| color: #1e88e5; |
| font-size: 42px; |
| font-weight: 600; |
| } |
| .icon-close { |
| width: 56px; |
| height: 56px; |
| } |
| |
| |
| .content { |
| padding: 24px 36px 0 36px; |
| box-sizing: border-box; |
| } |
| .field { |
| padding: 28px 0 24px 0; |
| border-bottom: 2px solid #eceff1; |
| } |
| .placeholder { |
| font-size: 42px; |
| color: #9aa4ab; |
| } |
| .label { |
| font-size: 34px; |
| color: #9aa4ab; |
| margin-bottom: 8px; |
| } |
| .value { |
| font-size: 48px; |
| color: #1f2933; |
| font-weight: 500; |
| } |
| |
| |
| .content .field + .field { |
| margin-top: 8px; |
| } |
| |
| |
| .nav-area { |
| position: absolute; |
| bottom: 0; |
| left: 0; |
| width: 1080px; |
| height: 120px; |
| background: #000000; |
| display: flex; |
| align-items: center; |
| justify-content: center; |
| } |
| .home-pill { |
| width: 260px; |
| height: 12px; |
| background: #d1d5db; |
| border-radius: 8px; |
| opacity: 0.9; |
| } |
| </style> |
| </head> |
| <body> |
| <div id="render-target"> |
| |
| <div class="status-bar"> |
| <div class="left-time">5:57</div> |
| <div class="right"> |
| <div class="icon-dot"></div> |
| <div class="icon-dot" style="opacity:0.6;"></div> |
| <div class="icon-dot" style="width:22px;height:22px;"></div> |
| <div class="battery"><div class="level"></div></div> |
| </div> |
| </div> |
|
|
| |
| <div class="app-bar"> |
| <div class="left"> |
| <svg class="icon-close" viewBox="0 0 24 24" fill="none" stroke="#1f2933" stroke-width="2.2" stroke-linecap="round"> |
| <line x1="5" y1="5" x2="19" y2="19"></line> |
| <line x1="19" y1="5" x2="5" y2="19"></line> |
| </svg> |
| </div> |
| <div class="title">Create a Trip</div> |
| <div class="right"><div class="save">Save</div></div> |
| </div> |
|
|
| |
| <div class="content"> |
| <div class="field"> |
| <div class="placeholder">Destination</div> |
| </div> |
|
|
| <div class="field"> |
| <div class="placeholder">Trip name</div> |
| </div> |
|
|
| <div class="field"> |
| <div class="label">Start date</div> |
| <div class="value">Wed Jan 24, 2024</div> |
| </div> |
|
|
| <div class="field"> |
| <div class="label">End date</div> |
| <div class="value">Fri Jan 26, 2024</div> |
| </div> |
| </div> |
|
|
| |
| <div class="nav-area"> |
| <div class="home-pill"></div> |
| </div> |
| </div> |
| </body> |
| </html> |