| <!DOCTYPE html> |
| <html lang="en"> |
| <head> |
| <meta charset="UTF-8"> |
| <meta name="viewport" content="width=1080, initial-scale=1.0"> |
| <title>Search UI - Brussels</title> |
| <style> |
| body { margin: 0; padding: 0; background: transparent; font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif; } |
| #render-target { |
| width: 1080px; |
| height: 2400px; |
| position: relative; |
| overflow: hidden; |
| background: #FFFFFF; |
| } |
| |
| .statusbar { |
| position: absolute; |
| top: 0; |
| left: 0; |
| width: 1080px; |
| height: 110px; |
| display: flex; |
| align-items: center; |
| padding: 0 40px; |
| color: #202124; |
| font-size: 40px; |
| } |
| .statusbar .right { |
| margin-left: auto; |
| display: flex; |
| align-items: center; |
| gap: 30px; |
| } |
| |
| .search-area { |
| position: absolute; |
| top: 140px; |
| left: 40px; |
| width: 1000px; |
| display: flex; |
| align-items: center; |
| gap: 20px; |
| } |
| .close-btn { |
| width: 70px; |
| height: 70px; |
| border-radius: 35px; |
| border: 2px solid #8AA1B4; |
| display: flex; |
| align-items: center; |
| justify-content: center; |
| color: #6B7E8E; |
| cursor: default; |
| } |
| .search-pill { |
| flex: 1; |
| height: 120px; |
| border: 2.5px solid #2F80FF; |
| border-radius: 30px; |
| background: #ffffff; |
| box-shadow: 0 4px 10px rgba(0,0,0,0.08); |
| display: flex; |
| align-items: center; |
| padding: 0 30px; |
| gap: 26px; |
| } |
| .search-icon { |
| width: 36px; |
| height: 36px; |
| border: 2px solid #2F80FF; |
| border-radius: 18px; |
| } |
| .search-text { |
| font-size: 46px; |
| color: #1B3A52; |
| flex: 1; |
| } |
| .clear-btn { |
| width: 56px; |
| height: 56px; |
| border-radius: 28px; |
| border: 2px solid #8AA1B4; |
| display: flex; |
| align-items: center; |
| justify-content: center; |
| color: #6B7E8E; |
| } |
| |
| .suggestions { |
| position: absolute; |
| top: 320px; |
| left: 60px; |
| width: 960px; |
| } |
| .suggestion { |
| display: flex; |
| align-items: flex-start; |
| gap: 26px; |
| padding: 34px 0; |
| border-bottom: 1px solid rgba(0,0,0,0.04); |
| } |
| .icon { |
| width: 52px; |
| height: 52px; |
| color: #6C88A0; |
| } |
| .s-title { |
| font-size: 44px; |
| color: #1B3A52; |
| } |
| .s-title b { font-weight: 700; } |
| .s-sub { |
| font-size: 38px; |
| color: #6C88A0; |
| margin-top: 8px; |
| } |
| |
| |
| .keyboard { |
| position: absolute; |
| left: 0; |
| bottom: 100px; |
| width: 1080px; |
| height: 830px; |
| background: #1F1A1A; |
| box-shadow: 0 -6px 18px rgba(0,0,0,0.25); |
| } |
| .kb-topbar { |
| height: 110px; |
| display: flex; |
| align-items: center; |
| justify-content: space-between; |
| padding: 0 34px; |
| color: #F1DDCF; |
| font-size: 42px; |
| } |
| .kb-rows { |
| padding: 20px 26px 26px; |
| display: grid; |
| gap: 22px; |
| } |
| .kb-row { display: flex; gap: 18px; justify-content: center; } |
| .key { |
| width: 92px; |
| height: 112px; |
| border-radius: 26px; |
| background: #2B2424; |
| color: #EAD7C6; |
| font-size: 42px; |
| display: flex; |
| align-items: center; |
| justify-content: center; |
| } |
| .key.wide { width: 140px; } |
| .key.xwide { width: 180px; } |
| .key.circle { |
| width: 110px; |
| height: 110px; |
| border-radius: 55px; |
| background: #F0CFAE; |
| color: #2B2424; |
| font-weight: 600; |
| } |
| .gesture-bar { |
| position: absolute; |
| bottom: 30px; |
| left: 50%; |
| transform: translateX(-50%); |
| width: 220px; |
| height: 12px; |
| background: #E6E6E6; |
| border-radius: 6px; |
| } |
| </style> |
| </head> |
| <body> |
| <div id="render-target"> |
|
|
| |
| <div class="statusbar"> |
| <div>2:47</div> |
| <div class="right"> |
| |
| <svg width="42" height="42" viewBox="0 0 24 24" class="icon" style="color:#6C88A0;"> |
| <rect x="3" y="5" width="18" height="14" rx="2" fill="none" stroke="currentColor" stroke-width="2"/> |
| <path d="M3 7l9 6 9-6" fill="none" stroke="currentColor" stroke-width="2"/> |
| </svg> |
| |
| <svg width="42" height="42" viewBox="0 0 24 24" class="icon" style="color:#6C88A0;"> |
| <path d="M4 6h16a2 2 0 0 1 2 2v8h-3" fill="none" stroke="currentColor" stroke-width="2"/> |
| <path d="M2 18h2" stroke="currentColor" stroke-width="2" /> |
| <path d="M2 14h6" stroke="currentColor" stroke-width="2" /> |
| <path d="M2 10h10" stroke="currentColor" stroke-width="2" /> |
| </svg> |
| </div> |
| </div> |
|
|
| |
| <div class="search-area"> |
| <div class="close-btn"> |
| <svg width="34" height="34" viewBox="0 0 24 24" style="color:#6B7E8E"> |
| <path d="M6 6l12 12M18 6L6 18" stroke="currentColor" stroke-width="2" stroke-linecap="round"/> |
| </svg> |
| </div> |
| <div class="search-pill"> |
| <div class="search-icon"></div> |
| <div class="search-text">Brussels</div> |
| <div class="clear-btn"> |
| <svg width="28" height="28" viewBox="0 0 24 24" style="color:#6B7E8E"> |
| <path d="M6 6l12 12M18 6L6 18" stroke="currentColor" stroke-width="2" stroke-linecap="round"/> |
| </svg> |
| </div> |
| </div> |
| </div> |
|
|
| |
| <div class="suggestions"> |
| <div class="suggestion"> |
| |
| <svg class="icon" viewBox="0 0 24 24"> |
| <rect x="4" y="3" width="8" height="18" rx="1" fill="none" stroke="currentColor" stroke-width="2"/> |
| <rect x="14" y="8" width="6" height="13" rx="1" fill="none" stroke="currentColor" stroke-width="2"/> |
| <path d="M7 7h2M7 11h2M7 15h2" stroke="currentColor" stroke-width="2" stroke-linecap="round"/> |
| </svg> |
| <div> |
| <div class="s-title"><b>Brussels</b>, Capital Region of Brussels, Belgium</div> |
| </div> |
| </div> |
|
|
| <div class="suggestion"> |
| |
| <svg class="icon" viewBox="0 0 24 24"> |
| <rect x="4" y="4" width="16" height="12" rx="2" fill="none" stroke="currentColor" stroke-width="2"/> |
| <circle cx="8" cy="18" r="2" fill="currentColor"/> |
| <circle cx="16" cy="18" r="2" fill="currentColor"/> |
| <path d="M6 8h12" stroke="currentColor" stroke-width="2"/> |
| </svg> |
| <div> |
| <div class="s-title">Brussels City Center - Midi Train station</div> |
| </div> |
| </div> |
|
|
| <div class="suggestion"> |
| |
| <svg class="icon" viewBox="0 0 24 24"> |
| <path d="M12 21s7-7 7-11a7 7 0 1 0-14 0c0 4 7 11 7 11z" fill="none" stroke="currentColor" stroke-width="2"/> |
| <circle cx="12" cy="10" r="3" fill="currentColor"/> |
| </svg> |
| <div> |
| <div class="s-title">Brussels Delta</div> |
| </div> |
| </div> |
|
|
| <div class="suggestion"> |
| |
| <svg class="icon" viewBox="0 0 24 24"> |
| <path d="M12 21s7-7 7-11a7 7 0 1 0-14 0c0 4 7 11 7 11z" fill="none" stroke="currentColor" stroke-width="2"/> |
| <circle cx="12" cy="10" r="3" fill="currentColor"/> |
| </svg> |
| <div> |
| <div class="s-title">Brussels Luxemburg</div> |
| </div> |
| </div> |
|
|
| <div class="suggestion"> |
| |
| <svg class="icon" viewBox="0 0 24 24"> |
| <path d="M12 21s7-7 7-11a7 7 0 1 0-14 0c0 4 7 11 7 11z" fill="none" stroke="currentColor" stroke-width="2"/> |
| <circle cx="12" cy="10" r="3" fill="currentColor"/> |
| </svg> |
| <div> |
| <div class="s-title">Brussels Meiser</div> |
| </div> |
| </div> |
| </div> |
|
|
| |
| <div class="keyboard"> |
| <div class="kb-topbar"> |
| <div class="key circle" style="width:94px;height:94px;border-radius:47px;background:#2B2424;color:#EAD7C6;font-weight:500;"> |
| <svg width="36" height="36" viewBox="0 0 24 24" style="color:#EAD7C6"> |
| <rect x="4" y="4" width="16" height="16" rx="2" fill="none" stroke="currentColor" stroke-width="2"/> |
| <circle cx="9" cy="9" r="1.5" fill="currentColor"/> |
| <circle cx="15" cy="9" r="1.5" fill="currentColor"/> |
| <circle cx="9" cy="15" r="1.5" fill="currentColor"/> |
| <circle cx="15" cy="15" r="1.5" fill="currentColor"/> |
| </svg> |
| </div> |
| <div>Brussels</div> |
| <div class="key circle"> |
| <svg width="30" height="30" viewBox="0 0 24 24" style="color:#2B2424"> |
| <path d="M12 5a5 5 0 0 0-5 5v3a5 5 0 0 0 10 0V10a5 5 0 0 0-5-5z" fill="none" stroke="currentColor" stroke-width="2"/> |
| <path d="M19 19l-3-3" stroke="currentColor" stroke-width="2" stroke-linecap="round"/> |
| </svg> |
| </div> |
| </div> |
| <div class="kb-rows"> |
| <div class="kb-row"> |
| <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"> |
| <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"> |
| <div class="key wide">⇧</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 wide"> |
| <svg width="28" height="28" viewBox="0 0 24 24" style="color:#EAD7C6"> |
| <path d="M5 12h14M13 5l7 7-7 7" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round"/> |
| </svg> |
| </div> |
| </div> |
| <div class="kb-row"> |
| <div class="key circle">?123</div> |
| <div class="key xwide">,</div> |
| <div class="key xwide">🙂</div> |
| <div class="key" style="flex:1; min-width:420px;">space</div> |
| <div class="key xwide">.</div> |
| <div class="key circle">✓</div> |
| </div> |
| </div> |
| </div> |
|
|
| |
| <div class="gesture-bar"></div> |
| </div> |
| </body> |
| </html> |