| <!DOCTYPE html> |
| <html lang="en"> |
| <head> |
| <meta charset="UTF-8"> |
| <meta name="viewport" content="width=1080, initial-scale=1.0"> |
| <title>Search UI - Dark</title> |
| <style> |
| body { margin: 0; padding: 0; background: transparent; } |
| #render-target { |
| position: relative; |
| width: 1080px; |
| height: 2400px; |
| overflow: hidden; |
| background: #000000; |
| color: #EDEDED; |
| font-family: Roboto, system-ui, -apple-system, Segoe UI, Arial, sans-serif; |
| } |
| |
| |
| .status-bar { |
| height: 110px; |
| padding: 0 36px; |
| display: flex; |
| align-items: center; |
| justify-content: space-between; |
| color: #FFFFFF; |
| font-size: 38px; |
| box-sizing: border-box; |
| } |
| .status-right { |
| display: flex; |
| align-items: center; |
| gap: 26px; |
| opacity: 0.9; |
| } |
| .icon-small { |
| width: 34px; |
| height: 34px; |
| display: inline-flex; |
| align-items: center; |
| justify-content: center; |
| } |
| |
| |
| .search-wrap { padding: 0 24px; box-sizing: border-box; } |
| .search-bar { |
| height: 120px; |
| border-radius: 60px; |
| background: #2B2B2B; |
| display: flex; |
| align-items: center; |
| padding: 0 22px; |
| gap: 26px; |
| box-sizing: border-box; |
| } |
| .search-text { |
| flex: 1; |
| font-size: 46px; |
| color: #EAEAEA; |
| white-space: nowrap; |
| overflow: hidden; |
| text-overflow: ellipsis; |
| } |
| .underline { |
| text-decoration: underline; |
| } |
| .circle-btn { |
| width: 76px; |
| height: 76px; |
| border-radius: 38px; |
| display: inline-flex; |
| align-items: center; |
| justify-content: center; |
| background: transparent; |
| } |
| .circle-btn.camera { |
| background: #3A3A3A; |
| } |
| |
| |
| .suggestions { |
| padding: 18px 20px 0 24px; |
| box-sizing: border-box; |
| } |
| .suggestion { |
| position: relative; |
| padding: 28px 100px 28px 8px; |
| border-bottom: 1px solid #1F1F1F; |
| } |
| .suggestion .title { |
| font-size: 46px; |
| color: #E5E5E5; |
| line-height: 1.25; |
| } |
| .suggestion .title b { |
| font-weight: 800; |
| color: #FFFFFF; |
| } |
| .suggestion .sub { |
| margin-top: 8px; |
| font-size: 30px; |
| color: #9E9E9E; |
| } |
| .suggestion .go { |
| position: absolute; |
| right: 24px; |
| top: 50%; |
| transform: translateY(-50%); |
| opacity: 0.9; |
| } |
| |
| |
| .keyboard { |
| position: absolute; |
| left: 0; |
| right: 0; |
| bottom: 54px; |
| height: 860px; |
| background: #1B1B1B; |
| border-top-left-radius: 24px; |
| border-top-right-radius: 24px; |
| box-sizing: border-box; |
| padding: 14px 16px 10px; |
| } |
| .kb-toolbar { |
| height: 90px; |
| display: flex; |
| align-items: center; |
| gap: 16px; |
| padding: 0 6px 6px; |
| } |
| .chip { |
| background: #2A2A2A; |
| color: #EDEDED; |
| border: 1px solid #3A3A3A; |
| border-radius: 16px; |
| padding: 12px 22px; |
| font-size: 34px; |
| } |
| .chip.highlight { |
| background: #E6D6FF; |
| color: #2B2B2B; |
| border-color: #E6D6FF; |
| } |
| |
| .kb-rows { padding: 4px 2px 0; } |
| .kb-row { |
| display: grid; |
| grid-auto-flow: column; |
| grid-auto-columns: 1fr; |
| gap: 12px; |
| margin: 14px 8px; |
| } |
| .key { |
| height: 120px; |
| background: #2C2C2C; |
| border-radius: 22px; |
| display: flex; |
| align-items: center; |
| justify-content: center; |
| color: #F5F5F5; |
| font-size: 44px; |
| } |
| .key.wide { grid-column: span 2; } |
| .key.backspace, .key.shift { width: 120px; } |
| .key.circle { |
| width: 120px; |
| height: 120px; |
| border-radius: 60px; |
| background: #D9C6FF; |
| color: #2B2B2B; |
| font-weight: 700; |
| } |
| .key.darkcircle { |
| width: 120px; |
| height: 120px; |
| border-radius: 60px; |
| background: #3A3A3A; |
| } |
| .space { grid-column: span 5; } |
| |
| |
| .home-indicator { |
| position: absolute; |
| bottom: 16px; |
| left: 50%; |
| transform: translateX(-50%); |
| width: 360px; |
| height: 10px; |
| border-radius: 6px; |
| background: #E5E5E5; |
| opacity: 0.9; |
| } |
| </style> |
| </head> |
| <body> |
| <div id="render-target"> |
|
|
| |
| <div class="status-bar"> |
| <div class="time">8:23</div> |
| <div class="status-right"> |
| <span class="icon-small" title="Signal"> |
| <svg width="34" height="34" viewBox="0 0 24 24" fill="#FFFFFF" opacity="0.85"> |
| <rect x="2" y="16" width="3" height="6" rx="1"></rect> |
| <rect x="7" y="12" width="3" height="10" rx="1"></rect> |
| <rect x="12" y="8" width="3" height="14" rx="1"></rect> |
| <rect x="17" y="4" width="3" height="18" rx="1"></rect> |
| </svg> |
| </span> |
| <span class="icon-small" title="Wi‑Fi"> |
| <svg width="34" height="34" viewBox="0 0 24 24" fill="none" stroke="#FFFFFF" stroke-width="2"> |
| <path d="M2 9c5-4 15-4 20 0"></path> |
| <path d="M5 12c4-3 10-3 14 0"></path> |
| <path d="M8 15c2-2 6-2 8 0"></path> |
| <circle cx="12" cy="18" r="1.8" fill="#FFFFFF"></circle> |
| </svg> |
| </span> |
| <span class="icon-small" title="Battery"> |
| <svg width="42" height="34" viewBox="0 0 28 16" fill="none" stroke="#FFFFFF" stroke-width="2"> |
| <rect x="1" y="3" width="22" height="10" rx="2"></rect> |
| <rect x="23.5" y="6" width="3" height="4" rx="1" fill="#FFFFFF" stroke="none"></rect> |
| <rect x="3" y="5" width="18" height="6" rx="1" fill="#FFFFFF" stroke="none"></rect> |
| </svg> |
| </span> |
| </div> |
| </div> |
|
|
| |
| <div class="search-wrap"> |
| <div class="search-bar"> |
| <span class="circle-btn" aria-label="Back"> |
| <svg width="46" height="46" viewBox="0 0 24 24" fill="none" stroke="#FFFFFF" stroke-width="2.6" stroke-linecap="round" stroke-linejoin="round"> |
| <path d="M15 19l-7-7 7-7"></path> |
| </svg> |
| </span> |
| <div class="search-text">iPhone 14 Pro <span class="underline">Max</span></div> |
| <span class="circle-btn" aria-label="Clear"> |
| <svg width="40" height="40" viewBox="0 0 24 24" fill="none" stroke="#FFFFFF" stroke-width="2.6" stroke-linecap="round"> |
| <path d="M5 5l14 14M19 5L5 19"></path> |
| </svg> |
| </span> |
| <span class="circle-btn camera" aria-label="Camera"> |
| <svg width="44" height="44" viewBox="0 0 24 24" fill="none" stroke="#FFFFFF" stroke-width="2"> |
| <rect x="3" y="6" width="18" height="12" rx="2"></rect> |
| <path d="M8 6l1.5-2h5L16 6"></path> |
| <circle cx="12" cy="12" r="3.2"></circle> |
| </svg> |
| </span> |
| </div> |
| </div> |
|
|
| |
| <div class="suggestions"> |
| <div class="suggestion"> |
| <div class="title">iphone 14 pro max <b>case</b></div> |
| <div class="sub">Cell Phone Accessories</div> |
| <div class="go"> |
| <svg width="50" height="50" viewBox="0 0 24 24" fill="none" stroke="#BDBDBD" stroke-width="2.4" stroke-linecap="round" stroke-linejoin="round"> |
| <path d="M7 17L17 7"></path> |
| <path d="M9 7h8v8"></path> |
| </svg> |
| </div> |
| </div> |
|
|
| <div class="suggestion"> |
| <div class="title">iphone 14 pro max <b>case</b></div> |
| <div class="sub">Cell Phones & Smartphones</div> |
| <div class="go"> |
| <svg width="50" height="50" viewBox="0 0 24 24" fill="none" stroke="#BDBDBD" stroke-width="2.4" stroke-linecap="round" stroke-linejoin="round"> |
| <path d="M7 17L17 7"></path> |
| <path d="M9 7h8v8"></path> |
| </svg> |
| </div> |
| </div> |
|
|
| <div class="suggestion"> |
| <div class="title">iphone 14 pro max <b>unlocked</b></div> |
| <div class="go"> |
| <svg width="50" height="50" viewBox="0 0 24 24" fill="none" stroke="#BDBDBD" stroke-width="2.4" stroke-linecap="round" stroke-linejoin="round"> |
| <path d="M7 17L17 7"></path> |
| <path d="M9 7h8v8"></path> |
| </svg> |
| </div> |
| </div> |
|
|
| <div class="suggestion"> |
| <div class="title">iphone 14 pro max <b>phone</b></div> |
| <div class="go"> |
| <svg width="50" height="50" viewBox="0 0 24 24" fill="none" stroke="#BDBDBD" stroke-width="2.4" stroke-linecap="round" stroke-linejoin="round"> |
| <path d="M7 17L17 7"></path> |
| <path d="M9 7h8v8"></path> |
| </svg> |
| </div> |
| </div> |
|
|
| <div class="suggestion"> |
| <div class="title">iphone 14 pro max <b>cover</b></div> |
| <div class="go"> |
| <svg width="50" height="50" viewBox="0 0 24 24" fill="none" stroke="#BDBDBD" stroke-width="2.4" stroke-linecap="round" stroke-linejoin="round"> |
| <path d="M7 17L17 7"></path> |
| <path d="M9 7h8v8"></path> |
| </svg> |
| </div> |
| </div> |
|
|
| <div class="suggestion"> |
| <div class="title">iphone 14 pro max <b>1tb</b></div> |
| <div class="go"> |
| <svg width="50" height="50" viewBox="0 0 24 24" fill="none" stroke="#BDBDBD" stroke-width="2.4" stroke-linecap="round" stroke-linejoin="round"> |
| <path d="M7 17L17 7"></path> |
| <path d="M9 7h8v8"></path> |
| </svg> |
| </div> |
| </div> |
|
|
| <div class="suggestion"> |
| <div class="title">iphone 14 pro max <b>256gb</b></div> |
| <div class="go"> |
| <svg width="50" height="50" viewBox="0 0 24 24" fill="none" stroke="#BDBDBD" stroke-width="2.4" stroke-linecap="round" stroke-linejoin="round"> |
| <path d="M7 17L17 7"></path> |
| <path d="M9 7h8v8"></path> |
| </svg> |
| </div> |
| </div> |
|
|
| <div class="suggestion"> |
| <div class="title">iphone 14 pro max <b>screen protector</b></div> |
| <div class="go"> |
| <svg width="50" height="50" viewBox="0 0 24 24" fill="none" stroke="#BDBDBD" stroke-width="2.4" stroke-linecap="round" stroke-linejoin="round"> |
| <path d="M7 17L17 7"></path> |
| <path d="M9 7h8v8"></path> |
| </svg> |
| </div> |
| </div> |
|
|
| <div class="suggestion"> |
| <div class="title">iphone 14 pro max <b>case magsafe</b></div> |
| <div class="go"> |
| <svg width="50" height="50" viewBox="0 0 24 24" fill="none" stroke="#BDBDBD" stroke-width="2.4" stroke-linecap="round" stroke-linejoin="round"> |
| <path d="M7 17L17 7"></path> |
| <path d="M9 7h8v8"></path> |
| </svg> |
| </div> |
| </div> |
| </div> |
|
|
| |
| <div class="keyboard"> |
| <div class="kb-toolbar"> |
| <button class="chip highlight">Max</button> |
| <button class="chip">Mac</button> |
| <button class="chip">Maximum</button> |
| </div> |
|
|
| <div class="kb-rows"> |
| <div class="kb-row" style="grid-template-columns: repeat(10, 1fr);"> |
| <div class="key">q</div><div class="key">w</div><div class="key">e</div><div class="key">r</div><div class="key">t</div> |
| <div class="key">y</div><div class="key">u</div><div class="key">i</div><div class="key">o</div><div class="key">p</div> |
| </div> |
|
|
| <div class="kb-row" style="grid-template-columns: repeat(9, 1fr); padding: 0 40px;"> |
| <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="kb-row" style="grid-template-columns: 120px repeat(8, 1fr) 120px; align-items: center;"> |
| <div class="key darkcircle"> |
| <svg width="42" height="42" viewBox="0 0 24 24" fill="none" stroke="#EDEDED" stroke-width="2.4" stroke-linecap="round" stroke-linejoin="round"> |
| <path d="M7 15l-4-3 4-3"></path> |
| </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 darkcircle"> |
| <svg width="40" height="40" viewBox="0 0 24 24" fill="none" stroke="#EDEDED" stroke-width="2.4" stroke-linecap="round" stroke-linejoin="round"> |
| <path d="M21 12H8"></path> |
| <path d="M12 6l-6 6 6 6"></path> |
| </svg> |
| </div> |
| </div> |
|
|
| <div class="kb-row" style="grid-template-columns: 120px 1fr 120px 5fr 1fr 120px;"> |
| <div class="key circle">?123</div> |
| <div class="key">,</div> |
| <div class="key darkcircle"> |
| <svg width="34" height="34" viewBox="0 0 24 24" fill="none" stroke="#EDEDED" stroke-width="2"> |
| <circle cx="12" cy="12" r="3.2"></circle> |
| <path d="M12 2v2M12 20v2M2 12h2M20 12h2M4.9 4.9l1.4 1.4M17.7 17.7l1.4 1.4M17.7 6.3l1.4-1.4M4.9 19.1l1.4-1.4"></path> |
| </svg> |
| </div> |
| <div class="key space"></div> |
| <div class="key">.</div> |
| <div class="key circle"> |
| <svg width="42" height="42" viewBox="0 0 24 24" fill="none" stroke="#2B2B2B" stroke-width="2.6" stroke-linecap="round" stroke-linejoin="round"> |
| <circle cx="10.5" cy="10.5" r="5"></circle> |
| <path d="M15.5 15.5L20 20"></path> |
| </svg> |
| </div> |
| </div> |
| </div> |
| </div> |
|
|
| |
| <div class="home-indicator"></div> |
| </div> |
| </body> |
| </html> |