File size: 5,014 Bytes
ff1f000 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 | <!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;
}
/* Status bar (simulated) */
.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; }
/* Header */
.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 */
.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;
}
/* Bottom home indicator (simulated) */
.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">
<!-- Simulated status bar -->
<div class="statusbar">
<div class="time">3:17</div>
<div class="icons">
<!-- Cellular bars -->
<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>
<!-- WiFi -->
<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>
<!-- Battery -->
<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>
<!-- Header -->
<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>
<!-- Category list -->
<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>
<!-- Bottom home indicator -->
<div class="home-indicator">
<div class="pill"></div>
</div>
</div>
</body>
</html> |