| <!DOCTYPE html> |
| <html lang="en"> |
| <head> |
| <meta charset="UTF-8"> |
| <meta name="viewport" content="width=1080, initial-scale=1.0"> |
| <title>Honolulu Trip Notes</title> |
| <style> |
| body { margin: 0; padding: 0; background: transparent; font-family: "Roboto", Arial, Helvetica, sans-serif; color: #1f2937; } |
| #render-target { |
| width: 1080px; |
| height: 2400px; |
| position: relative; |
| overflow: hidden; |
| background: #ffffff; |
| } |
| |
| |
| .status-bar { |
| height: 86px; |
| padding: 0 36px; |
| display: flex; |
| align-items: center; |
| justify-content: space-between; |
| color: #6b7280; |
| font-size: 30px; |
| } |
| .status-right { |
| display: flex; |
| align-items: center; |
| gap: 22px; |
| } |
| .dot { width: 14px; height: 14px; background: #9ca3af; border-radius: 50%; display: inline-block; } |
| |
| |
| .header { |
| padding: 8px 32px 20px 32px; |
| position: relative; |
| } |
| .header-row { |
| display: flex; |
| align-items: center; |
| justify-content: space-between; |
| } |
| .back-and-title { |
| display: flex; |
| align-items: center; |
| gap: 22px; |
| } |
| .icon-btn { |
| width: 60px; height: 60px; display: inline-flex; align-items: center; justify-content: center; color: #111827; |
| } |
| .title-group { |
| display: flex; |
| flex-direction: column; |
| gap: 8px; |
| } |
| .title { |
| font-size: 64px; |
| font-weight: 700; |
| color: #111827; |
| line-height: 1.1; |
| } |
| .subtitle { |
| font-size: 34px; |
| color: #6b7280; |
| } |
| .actions { display: flex; align-items: center; gap: 28px; } |
| |
| |
| .banner { |
| width: 100%; |
| 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; |
| } |
| |
| |
| .content { |
| padding: 56px 36px 0 36px; |
| } |
| .section-title { |
| font-size: 58px; |
| font-weight: 700; |
| margin-bottom: 30px; |
| color: #111827; |
| } |
| |
| |
| .note-card { |
| border: 2px solid #d1d9de; |
| border-radius: 26px; |
| height: 560px; |
| background: #ffffff; |
| display: flex; |
| flex-direction: column; |
| overflow: hidden; |
| } |
| .note-card .note-area { |
| flex: 1; |
| background: #ffffff; |
| } |
| .note-card .divider { |
| height: 2px; |
| background: #d1d9de; |
| } |
| .note-card .note-actions { |
| height: 160px; |
| padding: 0 28px; |
| display: flex; |
| align-items: center; |
| justify-content: space-between; |
| } |
| .chip { |
| display: inline-flex; |
| align-items: center; |
| gap: 12px; |
| color: #0f7494; |
| font-size: 32px; |
| } |
| .add-btn { |
| background: #374151; |
| color: #ffffff; |
| font-size: 38px; |
| font-weight: 600; |
| padding: 26px 40px; |
| border-radius: 24px; |
| } |
| |
| |
| .gesture-bar { |
| position: absolute; |
| bottom: 22px; |
| left: 50%; |
| transform: translateX(-50%); |
| width: 320px; |
| height: 10px; |
| background: #d1d5db; |
| border-radius: 6px; |
| } |
| </style> |
| </head> |
| <body> |
| <div id="render-target"> |
|
|
| |
| <div class="status-bar"> |
| <div>6:00</div> |
| <div class="status-right"> |
| <span class="dot"></span> |
| <span class="dot"></span> |
| <span class="dot"></span> |
| <span class="dot"></span> |
| <span class="dot"></span> |
| </div> |
| </div> |
|
|
| |
| <div class="header"> |
| <div class="header-row"> |
| <div class="back-and-title"> |
| <div class="icon-btn" aria-label="Back"> |
| <svg width="44" height="44" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.2" stroke-linecap="round" stroke-linejoin="round"> |
| <path d="M15 18l-6-6 6-6"></path> |
| </svg> |
| </div> |
| <div class="title-group"> |
| <div class="title">Honolulu Trip</div> |
| <div class="subtitle">Wed, Jan 24 – Fri, Jan 26</div> |
| </div> |
| </div> |
| <div class="actions"> |
| <div class="icon-btn" aria-label="Share"> |
| <svg width="44" height="44" viewBox="0 0 24 24" fill="currentColor"> |
| <path d="M18 16.08c-.76 0-1.44.3-1.96.77L8.91 12.7a3.3 3.3 0 000-1.39l7.05-4.11A3 3 0 0018 7.91a3.09 3.09 0 10-3.09-3.09 3 3 0 00.12.84L7.98 9.71a3.09 3.09 0 10.01 4.58l7.02 4.1c-.08.26-.12.53-.12.81A3.09 3.09 0 1018 16.08z"/> |
| </svg> |
| </div> |
| <div class="icon-btn" aria-label="More"> |
| <svg width="44" height="44" viewBox="0 0 24 24" fill="currentColor"> |
| <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> |
|
|
| |
| <div class="banner">[IMG: Clouds above sky]</div> |
|
|
| |
| <div class="content"> |
| <div class="section-title">Notes</div> |
|
|
| <div class="note-card"> |
| <div class="note-area"></div> |
| <div class="divider"></div> |
| <div class="note-actions"> |
| <div class="chip"> |
| <svg width="42" height="42" viewBox="0 0 24 24" fill="#0f7494"> |
| <path d="M12 2C8.13 2 5 5.13 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.87-3.13-7-7-7zm0 9.5A2.5 2.5 0 1 1 12 6a2.5 2.5 0 0 1 0 5.5z"/> |
| </svg> |
| </div> |
| <div class="add-btn">Add note</div> |
| </div> |
| </div> |
| </div> |
|
|
| |
| <div class="gesture-bar"></div> |
| </div> |
| </body> |
| </html> |