| <!DOCTYPE html> |
| <html> |
| <head> |
| <meta charset="utf-8"> |
| <title>Shoes Categories</title> |
| <style> |
| body { margin: 0; padding: 0; background: transparent; font-family: Helvetica, Arial, sans-serif; } |
| #render-target { |
| width: 1080px; |
| height: 2400px; |
| position: relative; |
| overflow: hidden; |
| background: #FFFFFF; |
| } |
| |
| |
| .statusbar { |
| height: 110px; |
| position: relative; |
| padding: 24px 40px; |
| color: #6e6e6e; |
| font-size: 36px; |
| line-height: 1; |
| } |
| .statusbar .time { position: absolute; left: 40px; top: 32px; } |
| .statusbar .icons { position: absolute; right: 40px; top: 26px; display: flex; gap: 26px; align-items: center; } |
| .statusbar svg { opacity: 0.7; } |
| |
| |
| .appbar { |
| position: relative; |
| height: 180px; |
| } |
| .back-btn { |
| position: absolute; |
| left: 48px; |
| top: 54px; |
| width: 64px; |
| height: 64px; |
| } |
| .title { |
| position: absolute; |
| left: 0; |
| right: 0; |
| top: 50px; |
| text-align: center; |
| font-weight: 800; |
| font-size: 64px; |
| letter-spacing: 6px; |
| color: #111; |
| } |
| |
| |
| .list { margin-top: 20px; } |
| .item { |
| display: flex; |
| align-items: center; |
| padding: 46px 60px; |
| border-top: 1px solid #EEE; |
| } |
| .item:first-child { border-top: none; } |
| .thumb { |
| width: 220px; |
| height: 220px; |
| background: #E0E0E0; |
| border: 1px solid #BDBDBD; |
| display: flex; |
| align-items: center; |
| justify-content: center; |
| color: #757575; |
| font-size: 28px; |
| text-align: center; |
| } |
| .label { |
| margin-left: 40px; |
| font-size: 42px; |
| font-weight: 700; |
| letter-spacing: 6px; |
| color: #222; |
| text-transform: uppercase; |
| } |
| |
| |
| .home-indicator { |
| position: absolute; |
| left: 0; |
| right: 0; |
| bottom: 0; |
| height: 150px; |
| background: #000; |
| } |
| .home-indicator .pill { |
| position: absolute; |
| left: 50%; |
| top: 52px; |
| width: 360px; |
| height: 16px; |
| margin-left: -180px; |
| background: #CFCFCF; |
| border-radius: 10px; |
| } |
| </style> |
| </head> |
| <body> |
| <div id="render-target"> |
|
|
| |
| <div class="statusbar"> |
| <div class="time">3:17</div> |
| <div class="icons"> |
| |
| <svg width="44" height="44" viewBox="0 0 24 24"> |
| <rect x="2" y="14" width="2" height="8" fill="#6e6e6e"></rect> |
| <rect x="6" y="10" width="2" height="12" fill="#6e6e6e"></rect> |
| <rect x="10" y="6" width="2" height="16" fill="#6e6e6e"></rect> |
| <rect x="14" y="2" width="2" height="20" fill="#6e6e6e"></rect> |
| </svg> |
| |
| <svg width="44" height="44" viewBox="0 0 24 24"> |
| <path d="M2 8c5-4 15-4 20 0" stroke="#6e6e6e" stroke-width="2" fill="none" stroke-linecap="round"></path> |
| <path d="M5 12c3-3 11-3 14 0" stroke="#6e6e6e" stroke-width="2" fill="none" stroke-linecap="round"></path> |
| <path d="M8 16c2-2 6-2 8 0" stroke="#6e6e6e" stroke-width="2" fill="none" stroke-linecap="round"></path> |
| <circle cx="12" cy="19" r="1.5" fill="#6e6e6e"></circle> |
| </svg> |
| |
| <svg width="50" height="44" viewBox="0 0 28 16"> |
| <rect x="1" y="3" width="22" height="10" rx="2" ry="2" stroke="#6e6e6e" stroke-width="2" fill="none"></rect> |
| <rect x="24" y="6" width="3" height="4" fill="#6e6e6e"></rect> |
| <rect x="3" y="5" width="16" height="6" fill="#6e6e6e"></rect> |
| </svg> |
| </div> |
| </div> |
|
|
| |
| <div class="appbar"> |
| <div class="back-btn"> |
| <svg viewBox="0 0 24 24"> |
| <path d="M15 18l-6-6 6-6" stroke="#111" stroke-width="2.5" fill="none" stroke-linecap="round" stroke-linejoin="round"></path> |
| </svg> |
| </div> |
| <div class="title">SHOES</div> |
| </div> |
|
|
| |
| <div class="list"> |
| <div class="item"> |
| <div class="thumb">[IMG: White Women's Shoe]</div> |
| <div class="label">All Women's Shoes</div> |
| </div> |
| <div class="item"> |
| <div class="thumb">[IMG: Beige Sneakers]</div> |
| <div class="label">Sneakers</div> |
| </div> |
| <div class="item"> |
| <div class="thumb">[IMG: Black Running Shoe]</div> |
| <div class="label">Running</div> |
| </div> |
| <div class="item"> |
| <div class="thumb">[IMG: Black Slides]</div> |
| <div class="label">Sandals & Slides</div> |
| </div> |
| <div class="item"> |
| <div class="thumb">[IMG: Olive Gym Shoe]</div> |
| <div class="label">Workout & Gym</div> |
| </div> |
| <div class="item"> |
| <div class="thumb">[IMG: Trail Hiking Shoe]</div> |
| <div class="label">Hiking</div> |
| </div> |
| <div class="item"> |
| <div class="thumb">[IMG: Outdoor Shoe]</div> |
| <div class="label">Outdoor</div> |
| </div> |
| <div class="item"> |
| <div class="thumb">[IMG: Neon Soccer Cleat]</div> |
| <div class="label">Soccer</div> |
| </div> |
| </div> |
|
|
| |
| <div class="home-indicator"> |
| <div class="pill"></div> |
| </div> |
|
|
| </div> |
| </body> |
| </html> |