| <!DOCTYPE html> |
| <html lang="en"> |
| <head> |
| <meta charset="UTF-8"> |
| <meta name="viewport" content="width=1080, initial-scale=1.0"> |
| <title>Search UI</title> |
| <style> |
| body { margin:0; padding:0; background:transparent; font-family:-apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; } |
| #render-target { |
| width:1080px; height:2400px; |
| position:relative; overflow:hidden; |
| background:#ffffff; |
| } |
| |
| |
| .status-bar { |
| height:90px; |
| padding:0 40px; |
| display:flex; align-items:center; justify-content:space-between; |
| color:#435F72; font-size:34px; |
| } |
| .status-icons { display:flex; align-items:center; gap:28px; } |
| .status-dot { width:18px; height:18px; border-radius:50%; background:#435F72; opacity:.9; } |
| .status-rect { width:26px; height:36px; border-radius:6px; border:3px solid #435F72; } |
| |
| |
| .search-area { |
| padding:28px 40px 30px 40px; |
| box-shadow:0 3px 0 rgba(0,0,0,0.06); |
| background:#fff; |
| } |
| .search-row { |
| display:flex; align-items:center; gap:30px; |
| } |
| .round-btn { |
| width:72px; height:72px; border-radius:36px; |
| border:2px solid #C8D6E1; display:flex; align-items:center; justify-content:center; |
| } |
| .pill { |
| flex:1; |
| height:120px; |
| border-radius:60px; |
| border:3px solid #C8D6E1; |
| display:flex; align-items:center; padding:0 36px; |
| gap:26px; |
| } |
| .pin-icon, .close-icon, .building-icon { |
| width:44px; height:44px; |
| } |
| .pin-fill, .building-fill { fill:#7FA2B8; } |
| .close-stroke { stroke:#7FA2B8; stroke-width:6; stroke-linecap:round; } |
| .pill-text { |
| flex:1; font-size:46px; color:#1F3947; font-weight:600; |
| } |
| |
| |
| .section { |
| padding:40px 40px 0 40px; |
| } |
| .section-title { |
| font-size:38px; color:#6F8FA1; font-weight:700; margin-bottom:12px; |
| display:flex; align-items:center; justify-content:space-between; |
| } |
| .clear-link { color:#2D9CDB; font-weight:700; } |
| .divider { height:2px; background:#E6EDF2; margin:18px 0 10px 0; } |
| |
| .list { |
| padding:10px 0 0 0; |
| } |
| .item { display:flex; align-items:flex-start; gap:28px; padding:30px 0; } |
| .item .main { font-size:46px; color:#1F3947; font-weight:700; } |
| .item .secondary { font-size:44px; color:#8AA7B4; font-weight:600; } |
| .item .single { font-size:44px; color:#1F3947; font-weight:600; } |
| |
| |
| .bottom-safe { |
| position:absolute; left:0; bottom:0; width:100%; |
| height:160px; background:#000000; |
| display:flex; align-items:center; justify-content:center; |
| } |
| .home-pill { |
| width:240px; height:16px; border-radius:8px; background:#EAEAEA; |
| opacity:.85; |
| } |
| </style> |
| </head> |
| <body> |
| <div id="render-target"> |
|
|
| |
| <div class="status-bar"> |
| <div>2:48</div> |
| <div class="status-icons"> |
| <div class="status-dot"></div> |
| <div class="status-rect"></div> |
| </div> |
| </div> |
|
|
| |
| <div class="search-area"> |
| <div class="search-row"> |
| <div class="round-btn"> |
| <svg class="close-icon" viewBox="0 0 24 24"> |
| <path class="close-stroke" d="M5 5 L19 19"></path> |
| <path class="close-stroke" d="M19 5 L5 19"></path> |
| </svg> |
| </div> |
|
|
| <div class="pill"> |
| <svg class="pin-icon" viewBox="0 0 24 24"> |
| <path class="pin-fill" d="M12 2c-4 0-7 3-7 7 0 5 7 13 7 13s7-8 7-13c0-4-3-7-7-7zm0 10a3 3 0 1 1 0-6 3 3 0 0 1 0 6z"/> |
| </svg> |
| <div class="pill-text">Gajnice Train Station, Zagreb</div> |
| <div class="round-btn" style="width:72px;height:72px;border-color:#C8D6E1;"> |
| <svg class="close-icon" viewBox="0 0 24 24"> |
| <path class="close-stroke" d="M5 5 L19 19"></path> |
| <path class="close-stroke" d="M19 5 L5 19"></path> |
| </svg> |
| </div> |
| </div> |
| </div> |
| </div> |
|
|
| |
| <div class="section"> |
| <div class="section-title"> |
| <div>Recently searched</div> |
| <div class="clear-link">Clear</div> |
| </div> |
| <div class="divider"></div> |
|
|
| <div class="list"> |
| <div class="item"> |
| <svg class="pin-icon" viewBox="0 0 24 24"> |
| <path class="pin-fill" d="M12 2c-4 0-7 3-7 7 0 5 7 13 7 13s7-8 7-13c0-4-3-7-7-7zm0 10a3 3 0 1 1 0-6 3 3 0 0 1 0 6z"/> |
| </svg> |
| <div> |
| <span class="main">Gajnice Train Station</span><span class="secondary">, Zagreb</span> |
| </div> |
| </div> |
|
|
| <div class="item"> |
| <svg class="pin-icon" viewBox="0 0 24 24"> |
| <path class="pin-fill" d="M12 2c-4 0-7 3-7 7 0 5 7 13 7 13s7-8 7-13c0-4-3-7-7-7zm0 10a3 3 0 1 1 0-6 3 3 0 0 1 0 6z"/> |
| </svg> |
| <div> |
| <span class="main">Paris Gare de l'Est</span><span class="secondary">, Paris</span> |
| </div> |
| </div> |
| </div> |
| </div> |
|
|
| |
| <div class="section"> |
| <div class="section-title">Search results</div> |
| <div class="divider"></div> |
|
|
| <div class="list"> |
|
|
| <div class="item"> |
| <svg class="building-icon" viewBox="0 0 24 24"> |
| <path class="building-fill" d="M4 3h12v18H4V3zm16 5h-2v13h2V8zM7 6h2v2H7V6zm4 0h2v2h-2V6zM7 10h2v2H7v-2zm4 0h2v2h-2v-2zM7 14h2v2H7v-2zm4 14h-2"></path> |
| </svg> |
| <div> |
| <span class="main">Zagreb</span><span class="secondary">, Grad Zagreb, Croatia</span> |
| </div> |
| </div> |
|
|
| <div class="item"> |
| <svg class="pin-icon" viewBox="0 0 24 24"> |
| <path class="pin-fill" d="M12 2c-4 0-7 3-7 7 0 5 7 13 7 13s7-8 7-13c0-4-3-7-7-7zm0 10a3 3 0 1 1 0-6 3 3 0 0 1 0 6z"/> |
| </svg> |
| <div class="single">Gajnice Train Station</div> |
| </div> |
|
|
| <div class="item"> |
| <svg class="building-icon" viewBox="0 0 24 24"> |
| <path class="building-fill" d="M4 3h12v18H4V3zm16 5h-2v13h2V8zM7 6h2v2H7V6zm4 0h2v2h-2V6zM7 10h2v2H7v-2zm4 0h2v2h-2v-2zM7 14h2v2H7v-2zm4 14h-2"></path> |
| </svg> |
| <div> |
| <span class="main">Repinec</span><span class="secondary">, Zagreb, Croatia</span> |
| </div> |
| </div> |
|
|
| <div class="item"> |
| <svg class="pin-icon" viewBox="0 0 24 24"> |
| <path class="pin-fill" d="M12 2c-4 0-7 3-7 7 0 5 7 13 7 13s7-8 7-13c0-4-3-7-7-7zm0 10a3 3 0 1 1 0-6 3 3 0 0 1 0 6z"/> |
| </svg> |
| <div class="single">Train Station</div> |
| </div> |
|
|
| <div class="item"> |
| <svg class="building-icon" viewBox="0 0 24 24"> |
| <path class="building-fill" d="M4 3h12v18H4V3zm16 5h-2v13h2V8zM7 6h2v2H7V6zm4 0h2v2h-2V6zM7 10h2v2H7v-2zm4 0h2v2h-2v-2zM7 14h2v2H7v-2zm4 14h-2"></path> |
| </svg> |
| <div> |
| <span class="main">Zaprešić</span><span class="secondary">, Zagreb, Croatia</span> |
| </div> |
| </div> |
|
|
| <div class="item"> |
| <svg class="pin-icon" viewBox="0 0 24 24"> |
| <path class="pin-fill" d="M12 2c-4 0-7 3-7 7 0 5 7 13 7 13s7-8 7-13c0-4-3-7-7-7zm0 10a3 3 0 1 1 0-6 3 3 0 0 1 0 6z"/> |
| </svg> |
| <div class="single">Train Station</div> |
| </div> |
|
|
| <div class="item"> |
| <svg class="building-icon" viewBox="0 0 24 24"> |
| <path class="building-fill" d="M4 3h12v18H4V3zm16 5h-2v13h2V8zM7 6h2v2H7V6zm4 0h2v2h-2V6zM7 10h2v2H7v-2zm4 0h2v2h-2v-2zM7 14h2v2H7v-2zm4 14h-2"></path> |
| </svg> |
| <div> |
| <span class="main">Pojatno</span><span class="secondary">, Zagreb, Croatia</span> |
| </div> |
| </div> |
|
|
| <div class="item"> |
| <svg class="pin-icon" viewBox="0 0 24 24"> |
| <path class="pin-fill" d="M12 2c-4 0-7 3-7 7 0 5 7 13 7 13s7-8 7-13c0-4-3-7-7-7zm0 10a3 3 0 1 1 0-6 3 3 0 0 1 0 6z"/> |
| </svg> |
| <div class="single">Train Station</div> |
| </div> |
|
|
| <div class="item"> |
| <svg class="building-icon" viewBox="0 0 24 24"> |
| <path class="building-fill" d="M4 3h12v18H4V3zm16 5h-2v13h2V8zM7 6h2v2H7V6zm4 0h2v2h-2V6zM7 10h2v2H7v-2zm4 0h2v2h-2v-2zM7 14h2v2H7v-2zm4 14h-2"></path> |
| </svg> |
| <div> |
| <span class="main">Dugo Selo</span><span class="secondary">, Zagreb, Croatia</span> |
| </div> |
| </div> |
|
|
| <div class="item"> |
| <svg class="pin-icon" viewBox="0 0 24 24"> |
| <path class="pin-fill" d="M12 2c-4 0-7 3-7 7 0 5 7 13 7 13s7-8 7-13c0-4-3-7-7-7zm0 10a3 3 0 1 1 0-6 3 3 0 0 1 0 6z"/> |
| </svg> |
| <div class="single">Train Station</div> |
| </div> |
|
|
| </div> |
| </div> |
|
|
| |
| <div class="bottom-safe"> |
| <div class="home-pill"></div> |
| </div> |
|
|
| </div> |
| </body> |
| </html> |