| <html> |
| <head> |
| <meta charset="utf-8"> |
| <title>Chalsea boots - Category</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; |
| } |
| |
| |
| .status-bar { |
| height: 120px; |
| background: #D3D3D3; |
| color: #333; |
| display: flex; |
| align-items: center; |
| justify-content: space-between; |
| padding: 0 32px; |
| font-size: 42px; |
| } |
| .status-left { display: flex; align-items: center; gap: 16px; } |
| .status-right { display: flex; align-items: center; gap: 22px; } |
| .sb-icon { |
| width: 42px; height: 42px; border-radius: 50%; border: 2px solid #666; |
| } |
| .battery { |
| display: flex; align-items: center; gap: 10px; font-size: 40px; |
| } |
| .battery .pct { font-weight: bold; } |
| |
| |
| .app-bar { |
| position: relative; |
| height: 160px; |
| display: flex; |
| align-items: center; |
| padding: 0 34px; |
| border-bottom: 1px solid #eee; |
| background: #fff; |
| } |
| .app-left, .app-right { display: flex; align-items: center; } |
| .app-left { gap: 26px; } |
| .app-right { margin-left: auto; gap: 36px; } |
| .app-title { |
| position: absolute; |
| left: 50%; |
| transform: translateX(-50%); |
| font-size: 60px; |
| font-weight: 700; |
| color: #111; |
| letter-spacing: 1px; |
| } |
| .icon-btn { width: 64px; height: 64px; display: inline-flex; align-items: center; justify-content: center; } |
| .icon-btn svg { width: 64px; height: 64px; stroke: #111; fill: none; stroke-width: 4; } |
| |
| |
| .mini-filters { |
| display: flex; |
| justify-content: space-between; |
| padding: 18px 50px 8px 50px; |
| color: #777; |
| font-size: 30px; |
| } |
| .color-dots { display: flex; gap: 18px; } |
| .dot { |
| width: 26px; height: 26px; border-radius: 50%; |
| background: #000; |
| border: 2px solid #bbb; |
| } |
| .dot.grey { background: #8b8b8b; } |
| .dot.tan { background: #a59a88; } |
| |
| |
| .grid { |
| display: grid; |
| grid-template-columns: 1fr 1fr; |
| gap: 34px 34px; |
| padding: 22px 34px 40px 34px; |
| } |
| .product-card { |
| background: #fff; |
| } |
| .img-wrap { |
| position: relative; |
| height: 640px; |
| background: #E0E0E0; |
| border: 1px solid #BDBDBD; |
| display: flex; |
| align-items: center; |
| justify-content: center; |
| color: #757575; |
| font-size: 40px; |
| text-align: center; |
| } |
| .fav-circle { |
| position: absolute; |
| right: 32px; |
| bottom: 28px; |
| width: 88px; height: 88px; |
| border: 3px solid #111; |
| border-radius: 50%; |
| background: #fff; |
| display: flex; align-items: center; justify-content: center; |
| } |
| .fav-circle svg { width: 54px; height: 54px; stroke: #111; fill: none; stroke-width: 5; } |
| |
| .prod-title { |
| font-size: 42px; |
| color: #222; |
| margin-top: 18px; |
| } |
| .price { |
| font-size: 40px; |
| color: #111; |
| margin-top: 14px; |
| } |
| .prod-dots { |
| display: flex; |
| gap: 22px; |
| margin-top: 22px; |
| padding-bottom: 8px; |
| } |
| .prod-dots .dot { width: 28px; height: 28px; } |
| |
| |
| .home-indicator { |
| position: absolute; |
| bottom: 24px; |
| left: 50%; |
| transform: translateX(-50%); |
| width: 360px; |
| height: 12px; |
| background: #dcdcdc; |
| border-radius: 10px; |
| } |
| </style> |
| </head> |
| <body> |
| <div id="render-target"> |
|
|
| |
| <div class="status-bar"> |
| <div class="status-left"> |
| <div>1:46</div> |
| <div class="sb-icon"></div> |
| <div class="sb-icon"></div> |
| <div class="sb-icon"></div> |
| <div class="sb-icon"></div> |
| </div> |
| <div class="status-right"> |
| <div class="battery"> |
| <svg width="38" height="38" viewBox="0 0 24 24"> |
| <rect x="2" y="6" width="18" height="12" rx="2" ry="2" stroke="#333" fill="none" stroke-width="2"></rect> |
| <rect x="20" y="9" width="2" height="6" fill="#333"></rect> |
| </svg> |
| <span class="pct">100%</span> |
| </div> |
| </div> |
| </div> |
|
|
| |
| <div class="app-bar"> |
| <div class="app-left"> |
| <div class="icon-btn"> |
| <svg viewBox="0 0 24 24"> |
| <line x1="3" y1="6" x2="21" y2="6"></line> |
| <line x1="3" y1="12" x2="21" y2="12"></line> |
| <line x1="3" y1="18" x2="21" y2="18"></line> |
| </svg> |
| </div> |
| </div> |
| <div class="app-title">Chalsea boots</div> |
| <div class="app-right"> |
| <div class="icon-btn"> |
| <svg viewBox="0 0 24 24"> |
| <circle cx="11" cy="11" r="7"></circle> |
| <line x1="16.5" y1="16.5" x2="21.5" y2="21.5"></line> |
| </svg> |
| </div> |
| <div class="icon-btn"> |
| <svg viewBox="0 0 24 24"> |
| <circle cx="12" cy="9" r="4"></circle> |
| <path d="M4 22c0-4.5 4-7 8-7s8 2.5 8 7" ></path> |
| </svg> |
| </div> |
| <div class="icon-btn"> |
| <svg viewBox="0 0 24 24"> |
| <path d="M12 21s-7-4.5-7-10a4 4 0 0 1 7-2 4 4 0 0 1 7 2c0 5.5-7 10-7 10z"></path> |
| </svg> |
| </div> |
| <div class="icon-btn"> |
| <svg viewBox="0 0 24 24"> |
| <rect x="5" y="8" width="14" height="12" rx="2"></rect> |
| <path d="M8 8V6c0-1.1.9-2 2-2h4c1.1 0 2 .9 2 2v2"></path> |
| </svg> |
| </div> |
| </div> |
| </div> |
|
|
| |
| <div class="mini-filters"> |
| <div class="color-dots"> |
| <div class="dot"></div> |
| <div class="dot grey"></div> |
| </div> |
| <div class="color-dots"> |
| <div class="dot"></div> |
| <div class="dot tan"></div> |
| </div> |
| </div> |
|
|
| |
| <div class="grid"> |
|
|
| |
| <div class="product-card"> |
| <div class="img-wrap"> |
| [IMG: Suede Chelsea Boots - pair] |
| <div class="fav-circle"> |
| <svg viewBox="0 0 24 24"> |
| <path d="M12 21s-7-4.5-7-10a4 4 0 0 1 7-2 4 4 0 0 1 7 2c0 5.5-7 10-7 10z"></path> |
| </svg> |
| </div> |
| </div> |
| <div class="prod-title">Chelsea Boots</div> |
| <div class="price">$67.99</div> |
| <div class="prod-dots"> |
| <div class="dot"></div> |
| <div class="dot"></div> |
| <div class="dot grey"></div> |
| </div> |
| </div> |
|
|
| |
| <div class="product-card"> |
| <div class="img-wrap"> |
| [IMG: Chunky Sole Chelsea Boot] |
| <div class="fav-circle"> |
| <svg viewBox="0 0 24 24"> |
| <path d="M12 21s-7-4.5-7-10a4 4 0 0 1 7-2 4 4 0 0 1 7 2c0 5.5-7 10-7 10z"></path> |
| </svg> |
| </div> |
| </div> |
| <div class="prod-title">Chelsea Boots</div> |
| <div class="price">$39.99</div> |
| <div class="prod-dots"> |
| <div class="dot"></div> |
| </div> |
| </div> |
|
|
| |
| <div class="product-card"> |
| <div class="img-wrap"> |
| [IMG: Smooth Leather Chelsea Boot] |
| <div class="fav-circle"> |
| <svg viewBox="0 0 24 24"> |
| <path d="M12 21s-7-4.5-7-10a4 4 0 0 1 7-2 4 4 0 0 1 7 2c0 5.5-7 10-7 10z"></path> |
| </svg> |
| </div> |
| </div> |
| <div class="prod-title">Chelsea Boots</div> |
| <div class="price">$—</div> |
| <div class="prod-dots"> |
| <div class="dot"></div> |
| <div class="dot grey"></div> |
| </div> |
| </div> |
|
|
| |
| <div class="product-card"> |
| <div class="img-wrap"> |
| [IMG: Platform Chelsea Boot] |
| <div class="fav-circle"> |
| <svg viewBox="0 0 24 24"> |
| <path d="M12 21s-7-4.5-7-10a4 4 0 0 1 7-2 4 4 0 0 1 7 2c0 5.5-7 10-7 10z"></path> |
| </svg> |
| </div> |
| </div> |
| <div class="prod-title">Chelsea Boots</div> |
| <div class="price">$—</div> |
| <div class="prod-dots"> |
| <div class="dot"></div> |
| </div> |
| </div> |
|
|
| </div> |
|
|
| <div class="home-indicator"></div> |
| </div> |
| </body> |
| </html> |