File size: 12,543 Bytes
98687c3 | 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 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 | <!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Select Your Sport</title>
<style>
body { margin: 0; padding: 0; background: transparent; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Helvetica Neue", Arial, sans-serif; }
#render-target {
width: 1080px;
height: 2400px;
position: relative;
overflow: hidden;
background: #223f48; /* deep blue-teal */
}
/* Status bar */
.status-bar {
position: absolute;
top: 0;
left: 0;
right: 0;
height: 120px;
color: #ffffff;
padding: 0 48px;
display: flex;
align-items: center;
justify-content: space-between;
opacity: 0.95;
}
.status-left {
font-size: 42px;
font-weight: 600;
letter-spacing: 0.5px;
}
.status-right {
display: flex;
align-items: center;
gap: 24px;
}
.status-icon { width: 44px; height: 44px; }
.status-icon path, .status-icon rect, .status-icon circle { fill: none; stroke: #ffffff; stroke-width: 5; }
/* Header */
.header {
margin-top: 220px;
text-align: center;
color: #ffffff;
padding: 0 64px;
}
.header h1 {
margin: 0 0 24px 0;
font-size: 68px;
font-weight: 800;
}
.header p {
margin: 0;
font-size: 36px;
line-height: 50px;
color: rgba(255,255,255,0.85);
max-width: 880px;
display: inline-block;
}
/* Grid of sports */
.sports-grid {
width: 960px;
margin: 90px auto 0;
display: grid;
grid-template-columns: repeat(3, 1fr);
grid-column-gap: 60px;
grid-row-gap: 90px;
text-align: center;
}
.sport {
color: #eaf2f6;
}
.sport .icon {
width: 160px;
height: 160px;
margin: 0 auto 24px;
}
.sport .icon svg { width: 160px; height: 160px; }
.sport .icon svg * { fill: #ffffff; stroke: none; }
.sport .label {
font-size: 36px;
font-weight: 700;
letter-spacing: 0.2px;
}
.sport.other .icon svg * { fill: #18F5B0; }
.sport.other .label { color: #18F5B0; }
/* CTA button */
.cta {
position: absolute;
left: 48px;
right: 48px;
bottom: 170px;
height: 150px;
background: #18F5B0;
border-radius: 32px;
display: flex;
align-items: center;
justify-content: center;
box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}
.cta span {
font-size: 50px;
font-weight: 800;
color: #1f3e47;
}
/* Home indicator */
.home-indicator {
position: absolute;
bottom: 48px;
left: 50%;
transform: translateX(-50%);
width: 240px;
height: 14px;
background: rgba(235,235,235,0.9);
border-radius: 7px;
}
</style>
</head>
<body>
<div id="render-target">
<!-- Status Bar -->
<div class="status-bar">
<div class="status-left">10:08</div>
<div class="status-right">
<!-- Signal dots -->
<svg class="status-icon" viewBox="0 0 44 44">
<circle cx="8" cy="22" r="3" fill="#fff"></circle>
<circle cx="18" cy="22" r="3" fill="#fff"></circle>
<circle cx="28" cy="22" r="3" fill="#fff"></circle>
<circle cx="38" cy="22" r="3" fill="#fff"></circle>
</svg>
<!-- Upload/arrow -->
<svg class="status-icon" viewBox="0 0 44 44">
<path d="M22 32V12"></path>
<path d="M14 20l8-8 8 8"></path>
</svg>
<!-- Dot -->
<svg class="status-icon" viewBox="0 0 44 44">
<circle cx="22" cy="22" r="4" fill="#fff"></circle>
</svg>
<!-- WiFi -->
<svg class="status-icon" viewBox="0 0 44 44">
<path d="M6 18c8-8 24-8 32 0"></path>
<path d="M12 24c6-6 18-6 24 0"></path>
<path d="M18 30c4-4 12-4 16 0"></path>
<circle cx="26" cy="34" r="2" fill="#fff"></circle>
</svg>
<!-- Battery -->
<svg class="status-icon" viewBox="0 0 44 44">
<rect x="7" y="12" width="28" height="20" rx="3" ry="3"></rect>
<rect x="36" y="18" width="3" height="8" rx="1" ry="1"></rect>
<rect x="10" y="15" width="22" height="14" fill="#fff" stroke="none"></rect>
</svg>
</div>
</div>
<!-- Header -->
<div class="header">
<h1>Select Your Sport</h1>
<p>We will personalize the app according to your choice</p>
</div>
<!-- Sports Grid -->
<div class="sports-grid">
<!-- Boating -->
<div class="sport">
<div class="icon">
<svg viewBox="0 0 160 160">
<!-- hull -->
<path d="M30 110h80l-20 12H40z"></path>
<!-- waves -->
<path d="M24 127c12 8 28 8 40 0 12 8 28 8 40 0" fill="none" stroke="#ffffff" stroke-width="6" stroke-linecap="round"></path>
<!-- sails -->
<polygon points="68,30 68,100 110,76"></polygon>
<polygon points="68,30 40,60 68,72"></polygon>
</svg>
</div>
<div class="label">Boating</div>
</div>
<!-- Kitesurfing -->
<div class="sport">
<div class="icon">
<svg viewBox="0 0 160 160">
<!-- kite crescent -->
<path d="M120 40a40 40 0 1 1-60 60 60 60 0 0 0 60-60z"></path>
<!-- person -->
<circle cx="58" cy="78" r="10"></circle>
<path d="M48 98c18 4 30 2 42-6" stroke="#ffffff" stroke-width="10" fill="none" stroke-linecap="round"></path>
<path d="M55 88l-8 20" stroke="#ffffff" stroke-width="10" stroke-linecap="round" fill="none"></path>
</svg>
</div>
<div class="label">Kitesurfing</div>
</div>
<!-- Windsurfing -->
<div class="sport">
<div class="icon">
<svg viewBox="0 0 160 160">
<!-- sail -->
<polygon points="60,28 110,60 60,104"></polygon>
<!-- board -->
<path d="M38 114c32 0 68 0 84 8" stroke="#ffffff" stroke-width="10" fill="none" stroke-linecap="round"></path>
<!-- waves -->
<path d="M40 130c12 8 28 8 40 0 12 8 28 8 40 0" fill="none" stroke="#ffffff" stroke-width="6" stroke-linecap="round"></path>
<!-- rider head -->
<circle cx="50" cy="96" r="8"></circle>
</svg>
</div>
<div class="label">Windsurfing</div>
</div>
<!-- Surfing -->
<div class="sport">
<div class="icon">
<svg viewBox="0 0 160 160">
<circle cx="72" cy="58" r="10"></circle>
<path d="M62 74l24 10-18 16" stroke="#ffffff" stroke-width="10" fill="none" stroke-linecap="round"></path>
<path d="M40 110h80" stroke="#ffffff" stroke-width="10" stroke-linecap="round"></path>
</svg>
</div>
<div class="label">Surfing</div>
</div>
<!-- Fishing -->
<div class="sport">
<div class="icon">
<svg viewBox="0 0 160 160">
<path d="M30 80c20-20 70-20 90 0-20 20-70 20-90 0z"></path>
<polygon points="120,80 140,92 120,104"></polygon>
<circle cx="88" cy="78" r="5" fill="#223f48"></circle>
</svg>
</div>
<div class="label">Fishing</div>
</div>
<!-- Drones -->
<div class="sport">
<div class="icon">
<svg viewBox="0 0 160 160">
<circle cx="50" cy="50" r="18"></circle>
<circle cx="110" cy="50" r="18"></circle>
<circle cx="50" cy="110" r="18"></circle>
<circle cx="110" cy="110" r="18"></circle>
<path d="M50 68v24M68 50h24M110 92v-24M92 110H68" stroke="#223f48" stroke-width="6" fill="none"></path>
</svg>
</div>
<div class="label">Drones</div>
</div>
<!-- Bicycling -->
<div class="sport">
<div class="icon">
<svg viewBox="0 0 160 160">
<circle cx="52" cy="112" r="22"></circle>
<circle cx="110" cy="112" r="22"></circle>
<circle cx="80" cy="52" r="9"></circle>
<path d="M78 62l-18 30 28 0 12-20" stroke="#ffffff" stroke-width="10" fill="none" stroke-linecap="round"></path>
</svg>
</div>
<div class="label">Bicycling</div>
</div>
<!-- Paragliding -->
<div class="sport">
<div class="icon">
<svg viewBox="0 0 160 160">
<path d="M30 44c30-24 70-24 100 0" stroke="#ffffff" stroke-width="12" fill="none" stroke-linecap="round"></path>
<path d="M80 44v26" stroke="#ffffff" stroke-width="8" stroke-linecap="round"></path>
<circle cx="80" cy="86" r="10"></circle>
<path d="M70 98l-10 18M90 98l10 18" stroke="#ffffff" stroke-width="10" fill="none" stroke-linecap="round"></path>
</svg>
</div>
<div class="label">Paragliding</div>
</div>
<!-- Kayaking -->
<div class="sport">
<div class="icon">
<svg viewBox="0 0 160 160">
<path d="M40 104c30-20 50-20 80 0" stroke="#ffffff" stroke-width="12" fill="none" stroke-linecap="round"></path>
<circle cx="70" cy="78" r="9"></circle>
<path d="M52 86l56 36" stroke="#ffffff" stroke-width="8" stroke-linecap="round"></path>
<rect x="36" y="112" width="88" height="10" rx="5" ry="5"></rect>
</svg>
</div>
<div class="label">Kayaking</div>
</div>
<!-- Winter sports -->
<div class="sport">
<div class="icon">
<svg viewBox="0 0 160 160">
<circle cx="70" cy="50" r="10"></circle>
<path d="M60 64l18 10-10 20" stroke="#ffffff" stroke-width="10" fill="none" stroke-linecap="round"></path>
<path d="M36 122l92-22" stroke="#ffffff" stroke-width="8" stroke-linecap="round"></path>
</svg>
</div>
<div class="label">Winter sports</div>
</div>
<!-- SUP -->
<div class="sport">
<div class="icon">
<svg viewBox="0 0 160 160">
<rect x="36" y="110" width="88" height="10" rx="5" ry="5"></rect>
<circle cx="72" cy="58" r="10"></circle>
<path d="M68 70l2 30" stroke="#ffffff" stroke-width="10" fill="none" stroke-linecap="round"></path>
<path d="M100 50l-4 64" stroke="#ffffff" stroke-width="8" fill="none" stroke-linecap="round"></path>
</svg>
</div>
<div class="label">SUP</div>
</div>
<!-- Diving -->
<div class="sport">
<div class="icon">
<svg viewBox="0 0 160 160">
<circle cx="60" cy="64" r="10"></circle>
<path d="M70 72l30 18" stroke="#ffffff" stroke-width="10" fill="none" stroke-linecap="round"></path>
<path d="M86 100l22 18" stroke="#ffffff" stroke-width="10" fill="none" stroke-linecap="round"></path>
<path d="M40 120c30-10 60-10 80 0" stroke="#ffffff" stroke-width="8" fill="none" stroke-linecap="round"></path>
</svg>
</div>
<div class="label">Diving</div>
</div>
<!-- Foiling -->
<div class="sport">
<div class="icon">
<svg viewBox="0 0 160 160">
<circle cx="72" cy="60" r="10"></circle>
<path d="M60 76l24 8-14 16" stroke="#ffffff" stroke-width="10" fill="none" stroke-linecap="round"></path>
<path d="M40 112h80" stroke="#ffffff" stroke-width="10" stroke-linecap="round"></path>
<path d="M80 96v24" stroke="#ffffff" stroke-width="8" stroke-linecap="round"></path>
</svg>
</div>
<div class="label">Foiling</div>
</div>
<!-- Running -->
<div class="sport">
<div class="icon">
<svg viewBox="0 0 160 160">
<circle cx="80" cy="46" r="10"></circle>
<path d="M74 56l20 12-12 20" stroke="#ffffff" stroke-width="10" fill="none" stroke-linecap="round"></path>
<path d="M70 92l-18 16" stroke="#ffffff" stroke-width="10" fill="none" stroke-linecap="round"></path>
<path d="M92 92l18 16" stroke="#ffffff" stroke-width="10" fill="none" stroke-linecap="round"></path>
</svg>
</div>
<div class="label">Running</div>
</div>
<!-- Other -->
<div class="sport other">
<div class="icon">
<svg viewBox="0 0 160 160">
<circle cx="90" cy="46" r="10"></circle>
<path d="M84 56l-16 28" stroke="#18F5B0" stroke-width="10" fill="none" stroke-linecap="round"></path>
<path d="M68 84l-18 36" stroke="#18F5B0" stroke-width="10" fill="none" stroke-linecap="round"></path>
<path d="M100 64l30 44" stroke="#18F5B0" stroke-width="10" fill="none" stroke-linecap="round"></path>
<rect x="42" y="118" width="88" height="10" rx="5" ry="5" fill="#18F5B0"></rect>
</svg>
</div>
<div class="label">Other</div>
</div>
</div>
<!-- CTA Button -->
<div class="cta"><span>Select</span></div>
<!-- Home indicator -->
<div class="home-indicator"></div>
</div>
</body>
</html> |