| <html> |
| <head> |
| <meta charset="UTF-8"> |
| <title>Chalsea boots - UI Mock</title> |
| <style> |
| body { margin: 0; padding: 0; background: transparent; font-family: Arial, Helvetica, sans-serif; } |
| #render-target { |
| width: 1080px; |
| height: 2400px; |
| position: relative; |
| overflow: hidden; |
| background: #ffffff; |
| color: #222; |
| } |
| |
| |
| .status-bar { |
| height: 150px; |
| background: #D3D3D3; |
| display: flex; |
| align-items: center; |
| padding: 0 40px; |
| font-size: 36px; |
| color: #2b2b2b; |
| } |
| .status-left { flex: 1; } |
| .status-right { |
| display: flex; |
| align-items: center; |
| gap: 28px; |
| } |
| .battery { |
| display: flex; |
| align-items: center; |
| gap: 12px; |
| } |
| .pill-signal { |
| width: 28px; height: 18px; border: 2px solid #2b2b2b; border-radius: 3px; position: relative; |
| } |
| .pill-signal::after { |
| content: ""; position: absolute; right: -7px; top: 5px; width: 5px; height: 8px; background: #2b2b2b; |
| } |
| |
| |
| .header { |
| height: 130px; |
| display: flex; |
| align-items: center; |
| padding: 0 36px; |
| border-bottom: 1px solid #eee; |
| } |
| .header .left, |
| .header .right { |
| display: flex; |
| align-items: center; |
| gap: 36px; |
| } |
| .header .title { |
| flex: 1; |
| text-align: left; |
| font-size: 54px; |
| font-weight: 700; |
| } |
| .icon { |
| width: 54px; |
| height: 54px; |
| display: inline-flex; |
| align-items: center; |
| justify-content: center; |
| color: #111; |
| } |
| .icon svg { width: 100%; height: 100%; } |
| |
| |
| .filter-row { |
| display: flex; |
| align-items: center; |
| justify-content: space-between; |
| padding: 20px 36px; |
| height: 100px; |
| } |
| .filter-item { |
| display: flex; |
| align-items: center; |
| font-size: 36px; |
| font-weight: 700; |
| letter-spacing: 0.5px; |
| } |
| .filter-item .sub { |
| font-weight: 700; |
| margin-right: 18px; |
| } |
| .chev { |
| width: 28px; |
| height: 28px; |
| margin-left: 16px; |
| } |
| |
| |
| .search-title { |
| padding: 24px 36px 12px 36px; |
| font-size: 42px; |
| font-weight: 800; |
| } |
| .search-desc { |
| padding: 0 36px; |
| font-size: 32px; |
| color: #444; |
| line-height: 1.5; |
| } |
| |
| |
| .suggestions { |
| margin-top: 20px; |
| } |
| .suggestion { |
| display: flex; |
| align-items: center; |
| justify-content: space-between; |
| padding: 26px 36px; |
| font-size: 40px; |
| border-bottom: 1px solid #eee; |
| } |
| .suggestion .arrow { |
| width: 42px; height: 42px; |
| } |
| |
| |
| .tabs-row { |
| display: flex; |
| align-items: center; |
| padding: 22px 36px; |
| gap: 40px; |
| } |
| .tabs { |
| display: flex; |
| gap: 30px; |
| font-size: 36px; |
| } |
| .tab { |
| padding-bottom: 10px; |
| color: #666; |
| } |
| .tab.active { |
| color: #7A1C20; |
| border-bottom: 4px solid #7A1C20; |
| } |
| .items-tools { |
| margin-left: auto; |
| display: flex; |
| align-items: center; |
| gap: 30px; |
| font-size: 34px; |
| color: #333; |
| } |
| .small-icon { |
| width: 46px; height: 46px; border: 2px solid #666; display: inline-block; |
| } |
| .grid-icon { |
| display: grid; grid-template-columns: repeat(3, 1fr); gap: 4px; |
| width: 46px; height: 46px; border: 2px solid #666; padding: 4px; |
| } |
| .grid-icon span { background: #666; } |
| |
| |
| .products { |
| display: grid; |
| grid-template-columns: 1fr 1fr; |
| gap: 30px; |
| padding: 24px 24px 140px 24px; |
| } |
| .card { |
| background: #fff; |
| border: 1px solid #eee; |
| padding-bottom: 18px; |
| } |
| .img-box { |
| height: 780px; |
| background: #E0E0E0; |
| border: 1px solid #BDBDBD; |
| display: flex; |
| align-items: center; |
| justify-content: center; |
| color: #757575; |
| font-size: 36px; |
| position: relative; |
| } |
| .heart-float { |
| position: absolute; |
| right: 24px; |
| bottom: 24px; |
| width: 70px; height: 70px; |
| border-radius: 36px; |
| display: flex; align-items: center; justify-content: center; |
| background: #fff; |
| box-shadow: 0 2px 8px rgba(0,0,0,0.12); |
| } |
| .card .title { |
| font-size: 40px; |
| padding: 24px; |
| } |
| .card .price { |
| font-size: 38px; |
| padding: 0 24px; |
| font-weight: 700; |
| } |
| .color-dots { |
| display: flex; gap: 18px; padding: 18px 24px; |
| } |
| .dot { |
| width: 24px; height: 24px; border-radius: 50%; |
| border: 2px solid #999; |
| } |
| .dot.black { background: #111; } |
| .dot.grey { background: #706f6f; } |
| |
| |
| .home-bar { |
| position: absolute; |
| bottom: 32px; |
| left: 50%; |
| transform: translateX(-50%); |
| width: 520px; |
| height: 16px; |
| background: #222; |
| border-radius: 8px; |
| opacity: 0.8; |
| } |
| </style> |
| </head> |
| <body> |
| <div id="render-target"> |
|
|
| |
| <div class="status-bar"> |
| <div class="status-left">1:45</div> |
| <div class="status-right"> |
| <span>✓</span> |
| <span>✉️</span> |
| <span>🔔</span> |
| <div class="battery"> |
| <span>100%</span> |
| <div class="pill-signal"></div> |
| </div> |
| </div> |
| </div> |
|
|
| |
| <div class="header"> |
| <div class="left"> |
| <div class="icon"> |
| <svg viewBox="0 0 24 24"> |
| <path d="M3 5h18M3 12h18M3 19h18" stroke="#111" stroke-width="2" fill="none" stroke-linecap="round"/> |
| </svg> |
| </div> |
| </div> |
| <div class="title">Chalsea boots</div> |
| <div class="right"> |
| <div class="icon"> |
| <svg viewBox="0 0 24 24"> |
| <circle cx="11" cy="11" r="7" stroke="#111" stroke-width="2" fill="none"/> |
| <path d="M20 20l-4-4" stroke="#111" stroke-width="2" fill="none" stroke-linecap="round"/> |
| </svg> |
| </div> |
| <div class="icon"> |
| <svg viewBox="0 0 24 24"> |
| <circle cx="12" cy="8" r="4" stroke="#111" stroke-width="2" fill="none"/> |
| <path d="M4 22c0-4 4-7 8-7s8 3 8 7" stroke="#111" stroke-width="2" fill="none" stroke-linecap="round"/> |
| </svg> |
| </div> |
| <div class="icon"> |
| <svg viewBox="0 0 24 24"> |
| <path d="M12 5c2.5-3 6.5-1 6.5 2.5C18.5 11 12 15 12 15S5.5 11 5.5 7.5C5.5 4 9.5 2 12 5z" stroke="#111" stroke-width="2" fill="none" /> |
| </svg> |
| </div> |
| <div class="icon"> |
| <svg viewBox="0 0 24 24"> |
| <path d="M7 7h10l-1 12H8L7 7z" stroke="#111" stroke-width="2" fill="none"/> |
| <path d="M9 7V5c0-1.7 6 0 6 0v2" stroke="#111" stroke-width="2" fill="none" stroke-linecap="round"/> |
| </svg> |
| </div> |
| </div> |
| </div> |
|
|
| |
| <div class="filter-row"> |
| <div class="filter-item"> |
| <span class="sub">DEPARTMENT</span> |
| <svg class="chev" viewBox="0 0 24 24"> |
| <path d="M5 9l7 7 7-7" stroke="#111" stroke-width="2" fill="none" stroke-linecap="round"/> |
| </svg> |
| </div> |
| <div class="filter-item"> |
| <span class="sub">FILTER & SORT</span> |
| <svg class="chev" viewBox="0 0 24 24"> |
| <path d="M4 6h16M7 12h10M10 18h4" stroke="#111" stroke-width="2" fill="none" stroke-linecap="round"/> |
| </svg> |
| </div> |
| </div> |
|
|
| |
| <div class="search-title">Search result for "chelsea boots"</div> |
| <div class="search-desc"> |
| Your search "Chalsea boots" did not match any results. <br> |
| Did you mean: |
| </div> |
|
|
| <div class="suggestions"> |
| <div class="suggestion"> |
| <span>chelsea boots</span> |
| <svg class="arrow" viewBox="0 0 24 24"> |
| <path d="M8 5l8 7-8 7" stroke="#111" stroke-width="2" fill="none" stroke-linecap="round"/> |
| </svg> |
| </div> |
| <div class="suggestion"> |
| <span>chelsea boot</span> |
| <svg class="arrow" viewBox="0 0 24 24"> |
| <path d="M8 5l8 7-8 7" stroke="#111" stroke-width="2" fill="none" stroke-linecap="round"/> |
| </svg> |
| </div> |
| </div> |
|
|
| |
| <div class="tabs-row"> |
| <div class="tabs"> |
| <div class="tab">Model</div> |
| <div class="tab active">Product</div> |
| </div> |
| <div class="items-tools"> |
| <span>51 Items</span> |
| <span class="small-icon"></span> |
| <div class="grid-icon"> |
| <span></span><span></span><span></span> |
| <span></span><span></span><span></span> |
| <span></span><span></span><span></span> |
| </div> |
| </div> |
| </div> |
|
|
| |
| <div class="products"> |
| |
| <div class="card"> |
| <div class="img-box"> |
| [IMG: Chunky Chelsea Boot] |
| <div class="heart-float"> |
| <svg viewBox="0 0 24 24"> |
| <path d="M12 6c2-3 6-1 6 2.3 0 4.2-6 8.2-6 8.2S6 12.5 6 8.3C6 5 10 3 12 6z" stroke="#111" stroke-width="2" fill="none"/> |
| </svg> |
| </div> |
| </div> |
| <div class="title">Chunky Chelsea Boots</div> |
| <div class="price">$54.99</div> |
| <div class="color-dots"> |
| <span class="dot black"></span> |
| <span class="dot grey"></span> |
| </div> |
| </div> |
|
|
| |
| <div class="card"> |
| <div class="img-box"> |
| [IMG: Chunky Chelsea Boot] |
| <div class="heart-float"> |
| <svg viewBox="0 0 24 24"> |
| <path d="M12 6c2-3 6-1 6 2.3 0 4.2-6 8.2-6 8.2S6 12.5 6 8.3C6 5 10 3 12 6z" stroke="#111" stroke-width="2" fill="none"/> |
| </svg> |
| </div> |
| </div> |
| <div class="title">Chunky Chelsea Boots</div> |
| <div class="price">$49.99</div> |
| <div class="color-dots"> |
| <span class="dot black"></span> |
| <span class="dot grey"></span> |
| </div> |
| </div> |
| </div> |
|
|
| |
| <div class="home-bar"></div> |
| </div> |
| </body> |
| </html> |