File size: 6,314 Bytes
0e1717f | 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 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 | <html lang="en">
<head>
<meta charset="UTF-8">
<title>Switch FWD Running Shoes - Mock UI</title>
<style>
body { margin: 0; padding: 0; background: transparent; }
#render-target {
width: 1080px;
height: 2400px;
position: relative;
overflow: hidden;
background: #ffffff;
font-family: Arial, Helvetica, sans-serif;
color: #111;
}
/* Global spacing helpers */
.screen-padding { padding: 0 60px; }
/* Status bar */
.status-bar {
height: 90px;
display: flex;
align-items: center;
justify-content: space-between;
padding: 0 28px;
box-sizing: border-box;
}
.status-time {
font-size: 34px;
font-weight: 700;
letter-spacing: 0.5px;
}
.status-icons {
display: flex;
align-items: center;
gap: 18px;
}
.status-icon { width: 40px; height: 40px; }
/* Header with title, price, and close */
.header {
display: flex;
align-items: center;
justify-content: space-between;
padding: 18px 60px 10px 60px;
}
.title {
font-size: 44px;
font-weight: 800;
letter-spacing: 2px;
text-transform: uppercase;
}
.price-pill {
border: 2px solid #111;
border-radius: 12px;
padding: 14px 28px;
font-size: 36px;
font-weight: 800;
}
.close-btn {
margin-left: 18px;
width: 60px;
height: 60px;
display: inline-flex;
align-items: center;
justify-content: center;
}
/* Thumbnails carousel */
.thumbs-row {
margin-top: 18px;
padding: 0 60px;
display: flex;
gap: 28px;
}
.thumb {
width: 180px;
height: 110px;
background: #E0E0E0;
border: 1px solid #BDBDBD;
border-radius: 12px;
display: flex;
align-items: center;
justify-content: center;
color: #555;
font-size: 22px;
text-align: center;
padding: 8px;
box-sizing: border-box;
}
.thumb.selected {
outline: 3px solid #bdbdbd;
background: #D8D8D8;
}
/* Section headings */
.section-title {
font-size: 54px;
font-weight: 900;
letter-spacing: 1px;
padding: 32px 60px 10px 60px;
}
.desc {
font-size: 32px;
line-height: 46px;
color: #222;
padding: 0 60px;
}
/* Share section */
.share-title {
font-size: 64px;
font-weight: 900;
letter-spacing: 1px;
padding: 80px 60px 30px 60px;
text-transform: uppercase;
}
.photo-frame {
margin: 0 auto;
width: 860px;
height: 1160px;
background: #E0E0E0;
border: 1px solid #BDBDBD;
border-radius: 12px;
display: flex;
align-items: center;
justify-content: center;
color: #555;
font-size: 30px;
text-align: center;
box-shadow: 0 6px 0 rgba(0,0,0,0.05);
}
/* Ratings section */
.ratings-title {
font-size: 56px;
font-weight: 900;
padding: 70px 60px 10px 60px;
letter-spacing: 1px;
}
.ratings-row {
display: flex;
gap: 70px;
padding: 20px 60px;
align-items: baseline;
}
.rating-number {
font-size: 120px;
font-weight: 800;
line-height: 1;
}
.rating-label {
font-size: 34px;
color: #666;
}
/* Utility separator (subtle) */
.divider {
height: 1px;
background: #eee;
margin: 20px 0;
}
</style>
</head>
<body>
<div id="render-target">
<!-- Status bar -->
<div class="status-bar">
<div class="status-time">5:13</div>
<div class="status-icons">
<!-- Cellular icon -->
<svg class="status-icon" viewBox="0 0 24 24">
<rect x="2" y="16" width="3" height="6" fill="#111"></rect>
<rect x="7" y="12" width="3" height="10" fill="#111"></rect>
<rect x="12" y="8" width="3" height="14" fill="#111"></rect>
<rect x="17" y="4" width="3" height="18" fill="#111"></rect>
</svg>
<!-- Wi-Fi icon -->
<svg class="status-icon" viewBox="0 0 24 24">
<path d="M2 8c5-4 15-4 20 0" stroke="#111" stroke-width="2" fill="none" stroke-linecap="round"/>
<path d="M5 12c3-3 11-3 14 0" stroke="#111" stroke-width="2" fill="none" stroke-linecap="round"/>
<path d="M9 16c2-2 4-2 6 0" stroke="#111" stroke-width="2" fill="none" stroke-linecap="round"/>
<circle cx="12" cy="20" r="2" fill="#111"></circle>
</svg>
<!-- Battery icon -->
<svg class="status-icon" viewBox="0 0 28 24">
<rect x="2" y="6" width="20" height="12" rx="2" ry="2" stroke="#111" stroke-width="2" fill="none"></rect>
<rect x="4" y="8" width="14" height="8" fill="#111"></rect>
<rect x="22" y="10" width="4" height="4" fill="#111"></rect>
</svg>
</div>
</div>
<!-- Header row -->
<div class="header">
<div class="title">SWITCH FWD RUNNING SHOES</div>
<div style="display:flex; align-items:center; gap:16px;">
<div class="price-pill">$140.00</div>
<div class="close-btn" aria-label="Close">
<svg viewBox="0 0 24 24">
<path d="M4 4 L20 20 M20 4 L4 20" stroke="#111" stroke-width="2" stroke-linecap="round"/>
</svg>
</div>
</div>
</div>
<!-- Shoe thumbnails -->
<div class="thumbs-row">
<div class="thumb">[IMG: Switch FWD shoe - neon green]</div>
<div class="thumb">[IMG: Switch FWD shoe - pink]</div>
<div class="thumb">[IMG: Switch FWD shoe - black]</div>
<div class="thumb">[IMG: Switch FWD shoe - beige]</div>
<div class="thumb selected">[IMG: Switch FWD shoe - grey/green]</div>
</div>
<!-- Continental outsole section -->
<div class="section-title">CONTINENTAL™ OUTSOLE</div>
<div class="desc">
The durable and lightweight Continental™ outsole features a high-performance compound for optimized grip in all conditions.
</div>
<!-- Divider -->
<div class="divider" style="margin: 40px 60px 0 60px;"></div>
<!-- Share section -->
<div class="share-title">SHARE HOW YOU WEAR IT</div>
<div class="photo-frame">
[IMG: Person wearing Switch FWD shoes doing a warm-up on a street]
</div>
<!-- Ratings section -->
<div class="ratings-title">RATINGS & REVIEWS</div>
<div class="ratings-row">
<div>
<div class="rating-number">4.7</div>
<div class="rating-label">Average Rating</div>
</div>
<div>
<div class="rating-number">96%</div>
<div class="rating-label">Would recommend</div>
</div>
</div>
</div>
</body>
</html> |