| <!DOCTYPE html> |
| <html lang="en"> |
| <head> |
| <meta charset="UTF-8" /> |
| <meta name="viewport" content="width=1080, initial-scale=1.0" /> |
| <title>Destination Screen</title> |
| <style> |
| body { margin: 0; padding: 0; background: transparent; font-family: Arial, Helvetica, sans-serif; } |
| #render-target { |
| position: relative; |
| overflow: hidden; |
| width: 1080px; |
| height: 2400px; |
| background: #FFFFFF; |
| } |
| |
| |
| .top-bar { |
| position: absolute; |
| top: 0; |
| left: 0; |
| width: 1080px; |
| height: 200px; |
| background: #0A6672; |
| color: #FFFFFF; |
| } |
| .status-bar { |
| height: 70px; |
| padding: 0 28px; |
| display: flex; |
| align-items: center; |
| justify-content: space-between; |
| font-size: 34px; |
| letter-spacing: 0.5px; |
| } |
| .status-left { display: flex; align-items: center; gap: 18px; } |
| .status-right { display: flex; align-items: center; gap: 26px; } |
| .status-dot { |
| width: 10px; height: 10px; background: #fff; border-radius: 50%; |
| } |
| .icon-wifi, |
| .icon-battery { |
| width: 40px; height: 40px; |
| } |
| .icon-wifi svg, |
| .icon-battery svg { width: 100%; height: 100%; } |
| |
| .app-bar { |
| height: 130px; |
| display: flex; |
| align-items: center; |
| padding: 0 30px; |
| gap: 24px; |
| } |
| .back-btn { width: 56px; height: 56px; } |
| .title { |
| font-size: 56px; |
| font-weight: 600; |
| margin-top: 6px; |
| } |
| |
| |
| .content-area { |
| position: absolute; |
| top: 200px; |
| left: 0; |
| width: 100%; |
| height: 1300px; |
| background: #FFFFFF; |
| } |
| |
| |
| .keyboard { |
| position: absolute; |
| bottom: 110px; |
| left: 0; |
| width: 100%; |
| height: 920px; |
| background: #141414; |
| color: #fff; |
| box-shadow: 0 -8px 20px rgba(0,0,0,0.25); |
| } |
| .kb-top { |
| height: 120px; |
| padding: 20px 32px 0 32px; |
| display: flex; |
| align-items: center; |
| justify-content: space-between; |
| } |
| .kb-top .circle { |
| width: 84px; |
| height: 84px; |
| border-radius: 50%; |
| background: #1F1F1F; |
| border: 1px solid #2A2A2A; |
| display: flex; |
| align-items: center; |
| justify-content: center; |
| color: #E0E0E0; |
| font-size: 28px; |
| } |
| .kb-top .circle svg { width: 40px; height: 40px; } |
| |
| .keys { |
| padding: 10px 30px; |
| } |
| .row { |
| display: flex; |
| justify-content: center; |
| gap: 14px; |
| margin-top: 18px; |
| } |
| .key { |
| width: 92px; |
| height: 120px; |
| background: #2B2B2B; |
| border: 1px solid #3A3A3A; |
| border-radius: 18px; |
| display: flex; |
| align-items: center; |
| justify-content: center; |
| font-size: 48px; |
| color: #F1F1F1; |
| position: relative; |
| } |
| .key .hint { |
| position: absolute; |
| top: 8px; |
| left: 10px; |
| font-size: 22px; |
| color: #9EA3A7; |
| } |
| .row.row2 { padding-left: 40px; padding-right: 40px; } |
| .row.row3 { padding-left: 80px; padding-right: 80px; } |
| |
| .key-wide { |
| width: 140px; |
| } |
| .key-backspace, .key-shift { |
| width: 140px; |
| font-size: 36px; |
| } |
| .key-backspace svg, .key-shift svg { width: 50px; height: 50px; } |
| |
| .bottom-row { |
| display: flex; |
| align-items: center; |
| gap: 16px; |
| padding: 24px 26px 0 26px; |
| } |
| .pill { |
| height: 110px; |
| padding: 0 28px; |
| background: #B5C6DD; |
| color: #0C1A26; |
| border-radius: 55px; |
| display: flex; |
| align-items: center; |
| justify-content: center; |
| font-size: 40px; |
| border: 1px solid #A7B7C9; |
| } |
| .key-small { |
| width: 90px; height: 110px; border-radius: 22px; |
| background: #2B2B2B; border: 1px solid #3A3A3A; |
| display: flex; align-items: center; justify-content: center; |
| font-size: 44px; color: #F1F1F1; |
| } |
| .spacebar { |
| flex: 1; |
| height: 110px; |
| background: #2B2B2B; |
| border: 1px solid #3A3A3A; |
| border-radius: 22px; |
| } |
| .search-btn { |
| width: 112px; height: 112px; border-radius: 56px; |
| background: #B5C6DD; |
| border: 1px solid #A7B7C9; |
| display: flex; align-items: center; justify-content: center; |
| } |
| .search-btn svg { width: 56px; height: 56px; } |
| |
| |
| .gesture { |
| position: absolute; |
| bottom: 28px; |
| left: 50%; |
| transform: translateX(-50%); |
| width: 240px; |
| height: 12px; |
| background: #EAEAEA; |
| border-radius: 6px; |
| } |
| </style> |
| </head> |
| <body> |
| <div id="render-target"> |
|
|
| <div class="top-bar"> |
| <div class="status-bar"> |
| <div class="status-left"> |
| <div style="font-weight:600;">10:17</div> |
| <div class="status-dot"></div> |
| </div> |
| <div class="status-right"> |
| <div class="icon-wifi"> |
| <svg viewBox="0 0 24 24" fill="#FFFFFF"> |
| <path d="M12 18a2 2 0 1 0 0.001 0zM2.5 9.5C6.9 6 17.1 6 21.5 9.5l-1.7 1.8C16.8 9 7.2 9 4.2 11.3L2.5 9.5zM6.2 13.1c3-2.3 8.6-2.3 11.6 0l-1.7 1.8c-2.4-1.8-5.8-1.8-8.2 0L6.2 13.1z"/> |
| </svg> |
| </div> |
| <div class="icon-battery"> |
| <svg viewBox="0 0 24 24" fill="#FFFFFF"> |
| <rect x="3" y="6" width="17" height="12" rx="2"></rect> |
| <rect x="21" y="10" width="2" height="4" rx="1"></rect> |
| <rect x="5" y="8" width="13" height="8" fill="#0A6672"></rect> |
| </svg> |
| </div> |
| </div> |
| </div> |
| <div class="app-bar"> |
| <div class="back-btn"> |
| <svg viewBox="0 0 24 24" fill="#FFFFFF"> |
| <path d="M15.5 5.5L9 12l6.5 6.5-2 2L5 12l8.5-8.5 2 2z"/> |
| </svg> |
| </div> |
| <div class="title">Destination</div> |
| </div> |
| </div> |
|
|
| <div class="content-area"> |
| |
| </div> |
|
|
| <div class="keyboard"> |
| <div class="kb-top"> |
| <div class="circle"> |
| <svg viewBox="0 0 24 24" fill="#E0E0E0"> |
| <circle cx="5" cy="5" r="2"></circle> |
| <circle cx="12" cy="5" r="2"></circle> |
| <circle cx="19" cy="5" r="2"></circle> |
| <circle cx="5" cy="12" r="2"></circle> |
| <circle cx="12" cy="12" r="2"></circle> |
| <circle cx="19" cy="12" r="2"></circle> |
| <circle cx="5" cy="19" r="2"></circle> |
| <circle cx="12" cy="19" r="2"></circle> |
| <circle cx="19" cy="19" r="2"></circle> |
| </svg> |
| </div> |
| <div class="circle">🙂</div> |
| <div class="circle" style="font-weight:700;">GIF</div> |
| <div class="circle"> |
| <svg viewBox="0 0 24 24" fill="#E0E0E0"> |
| <path d="M9 21h6v-2H9v2zM4 8h16l-2 9H6L4 8zm6-5h4l1 3H9l1-3z"/> |
| </svg> |
| </div> |
| <div class="circle"> |
| <svg viewBox="0 0 24 24" fill="#E0E0E0"> |
| <path d="M4 5h16v2H4zm0 6h16v2H4zm0 6h16v2H4z"/> |
| </svg> |
| </div> |
| <div class="circle">🎨</div> |
| <div class="circle"> |
| <svg viewBox="0 0 24 24" fill="#E0E0E0"> |
| <path d="M12 3a9 9 0 1 0 0 18 9 9 0 0 0 0-18zm-1 5h2v6h-2V8zm1 8a1.5 1.5 0 1 0 0.001 0z"/> |
| </svg> |
| </div> |
| </div> |
|
|
| <div class="keys"> |
| <div class="row"> |
| <div class="key"><span class="hint">1</span>q</div> |
| <div class="key"><span class="hint">2</span>w</div> |
| <div class="key"><span class="hint">3</span>e</div> |
| <div class="key"><span class="hint">4</span>r</div> |
| <div class="key"><span class="hint">5</span>t</div> |
| <div class="key"><span class="hint">6</span>y</div> |
| <div class="key"><span class="hint">7</span>u</div> |
| <div class="key"><span class="hint">8</span>i</div> |
| <div class="key"><span class="hint">9</span>o</div> |
| <div class="key"><span class="hint">0</span>p</div> |
| </div> |
|
|
| <div class="row row2"> |
| <div class="key">a</div> |
| <div class="key">s</div> |
| <div class="key">d</div> |
| <div class="key">f</div> |
| <div class="key">g</div> |
| <div class="key">h</div> |
| <div class="key">j</div> |
| <div class="key">k</div> |
| <div class="key">l</div> |
| </div> |
|
|
| <div class="row row3"> |
| <div class="key-shift key"> |
| <svg viewBox="0 0 24 24" fill="#F1F1F1"> |
| <path d="M12 4l8 8h-5v8H9v-8H4l8-8z"/> |
| </svg> |
| </div> |
| <div class="key">z</div> |
| <div class="key">x</div> |
| <div class="key">c</div> |
| <div class="key">v</div> |
| <div class="key">b</div> |
| <div class="key">n</div> |
| <div class="key">m</div> |
| <div class="key-backspace key"> |
| <svg viewBox="0 0 24 24" fill="#F1F1F1"> |
| <path d="M6 4l-4 8 4 8h14a2 2 0 0 0 2-2V6a2 2 0 0 0-2-2H6zm11 11l-5-3 5-3v6z"/> |
| </svg> |
| </div> |
| </div> |
|
|
| <div class="bottom-row"> |
| <div class="pill">?123</div> |
| <div class="key-small">,</div> |
| <div class="key-small">🙂</div> |
| <div class="spacebar"></div> |
| <div class="key-small">.</div> |
| <div class="search-btn"> |
| <svg viewBox="0 0 24 24" fill="#0C1A26"> |
| <circle cx="10" cy="10" r="6" stroke="#0C1A26" stroke-width="2" fill="none"></circle> |
| <path d="M15 15l5 5" stroke="#0C1A26" stroke-width="3" stroke-linecap="round"></path> |
| </svg> |
| </div> |
| </div> |
| </div> |
| </div> |
|
|
| <div class="gesture"></div> |
| </div> |
| </body> |
| </html> |