File size: 9,045 Bytes
fa881a6 | 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 | <html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=1080, initial-scale=1.0">
<title>Mobile UI Mock</title>
<style>
body { margin: 0; padding: 0; background: transparent; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; }
#render-target {
width: 1080px;
height: 2400px;
position: relative;
overflow: hidden;
background: #f2f2f2;
}
/* Status bar */
.statusbar {
height: 120px;
background: #e6e6e6;
color: #3c3c3c;
display: flex;
align-items: center;
padding: 0 36px;
font-weight: 600;
font-size: 40px;
letter-spacing: 0.3px;
}
.statusbar .right {
margin-left: auto;
display: flex;
gap: 24px;
align-items: center;
font-size: 34px;
color: #6b6b6b;
}
.icon-small {
width: 36px; height: 36px;
}
/* Search area */
.search-wrap {
padding: 24px 24px 10px 24px;
background: #e6e6e6;
box-shadow: inset 0 -1px 0 rgba(0,0,0,0.06);
}
.search-bar {
background: #ffffff;
border-radius: 28px;
height: 120px;
display: flex;
align-items: center;
padding: 0 28px;
box-shadow: 0 1px 0 rgba(0,0,0,0.04);
}
.back-btn {
width: 72px; height: 72px;
border-radius: 36px;
display: grid;
place-items: center;
}
.search-input {
flex: 1;
margin: 0 20px;
color: #222;
font-size: 44px;
font-weight: 600;
}
.mic {
width: 84px; height: 84px;
background: #d9f4ff;
border-radius: 42px;
display: grid;
place-items: center;
}
.mic svg { width: 44px; height: 44px; fill: #0ea5e9; }
/* Sections */
.content {
padding: 22px 24px 0 24px;
}
.section-title {
display: flex;
align-items: center;
gap: 18px;
color: #1f2937;
font-weight: 800;
font-size: 44px;
letter-spacing: 0.5px;
margin: 18px 0 22px 8px;
}
.trend-icon svg { width: 40px; height: 40px; fill: #3b82f6; }
/* Chips */
.chips {
display: flex;
flex-wrap: wrap;
gap: 22px;
padding-left: 8px;
}
.chip {
border: 2px solid #d1d5db;
border-radius: 18px;
padding: 26px 28px;
background: #fff;
font-size: 38px;
color: #111827;
box-shadow: 0 1px 0 rgba(0,0,0,0.03);
}
/* Trending near you */
.cards {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 24px;
padding: 10px 8px 24px 8px;
}
.card {
background: #ffffff;
border-radius: 16px;
overflow: hidden;
border: 1px solid #e5e7eb;
}
.card-img {
height: 340px;
background: #E0E0E0;
border-bottom: 1px solid #BDBDBD;
display: flex;
align-items: center;
justify-content: center;
color: #757575;
font-size: 34px;
}
.badge {
position: absolute;
top: 16px; left: 16px;
background: #2dd4bf;
color: #053b2f;
font-weight: 700;
font-size: 28px;
padding: 8px 14px;
border-radius: 12px;
}
.card-header {
position: relative;
}
.card-body {
padding: 18px 20px 22px 20px;
}
.card-title {
font-size: 34px;
color: #111827;
font-weight: 700;
margin-bottom: 6px;
}
.card-sub {
font-size: 28px;
color: #6b7280;
}
/* Keyboard overlay */
.keyboard {
position: absolute;
left: 0; right: 0; bottom: 0;
height: 980px;
background: #111315;
border-top-left-radius: 24px;
border-top-right-radius: 24px;
box-shadow: 0 -6px 18px rgba(0,0,0,0.25);
color: #fff;
}
.kb-suggest {
display: flex;
align-items: center;
gap: 18px;
padding: 22px 24px;
border-bottom: 1px solid rgba(255,255,255,0.08);
}
.s-chip {
background: #24272b;
color: #d1d5db;
font-weight: 700;
padding: 18px 26px;
border-radius: 32px;
font-size: 36px;
}
.kb-mic {
margin-left: auto;
width: 72px; height: 72px;
display: grid; place-items: center;
}
.kb-rows {
padding: 12px 18px 18px 18px;
}
.kb-row {
display: grid;
grid-template-columns: repeat(10, 1fr);
gap: 14px;
margin: 18px 0;
}
.key {
background: #1c1f23;
border-radius: 14px;
height: 120px;
display: grid; place-items: center;
font-size: 46px;
font-weight: 600;
color: #f5f5f5;
}
.kb-row.mid { grid-template-columns: repeat(9, 1fr); padding: 0 50px; }
.kb-row.bottom { grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr 1fr 1.4fr; }
.spacebar {
grid-column: span 3;
}
.search-fab {
position: absolute;
right: 28px;
bottom: 26px;
width: 132px; height: 132px;
background: #9ff3ef;
border-radius: 66px;
display: grid; place-items: center;
}
.search-fab svg { width: 56px; height: 56px; stroke: #0f766e; fill: none; stroke-width: 10; }
</style>
</head>
<body>
<div id="render-target">
<!-- Status Bar -->
<div class="statusbar">
10:36
<div class="right">
14°
<svg class="icon-small" viewBox="0 0 24 24"><path fill="#6b6b6b" d="M12 2a7 7 0 0 0 0 14 7 7 0 0 1 0-14zm0 20c-4.4 0-8-3.6-8-8h2a6 6 0 0 0 12 0h2c0 4.4-3.6 8-8 8z"/></svg>
<svg class="icon-small" viewBox="0 0 24 24"><path fill="#6b6b6b" d="M3 18h18v2H3zm2-3h14v2H5zm2-3h10v2H7zm2-3h6v2H9z"/></svg>
</div>
</div>
<!-- Search -->
<div class="search-wrap">
<div class="search-bar">
<div class="back-btn">
<svg width="44" height="44" viewBox="0 0 24 24"><path fill="#374151" d="M15.4 4.6 8 12l7.4 7.4-1.4 1.4L5.2 12l8.8-8.8z"/></svg>
</div>
<div class="search-input">Quechua hiking boots</div>
<div class="mic">
<svg viewBox="0 0 24 24"><path d="M12 14a3 3 0 0 0 3-3V6a3 3 0 0 0-6 0v5a3 3 0 0 0 3 3zm5-3a5 5 0 0 1-10 0H5a7 7 0 0 0 6 6.92V20H9v2h6v-2h-2v-2.08A7 7 0 0 0 19 11h-2z"/></svg>
</div>
</div>
</div>
<!-- Content -->
<div class="content">
<div class="section-title">
TRENDING SEARCHES
<span class="trend-icon">
<svg viewBox="0 0 24 24"><path d="M3 17h2.6l4-5 3 3 5-7L23 12v5H3z"/></svg>
</span>
</div>
<div class="chips">
<div class="chip">Easy Adjust Hiking Pole - Mt100 Comfort Black</div>
<div class="chip">Easy Adjust Hiking Pole - Mt100 Comfort Black</div>
<div class="chip">Hiking Pole - Mt100 Ergonomic Green</div>
<div class="chip">Ultra Compact Trekking Pole - Mt900 Black</div>
<div class="chip">Ultra Compact Trekking Pole - Mt900 Black</div>
</div>
<div class="section-title" style="margin-top: 36px;">TRENDING NEAR YOU</div>
<div class="cards">
<div class="card">
<div class="card-header">
<div class="card-img">[IMG: Dark Zip Jacket]</div>
<div class="badge">ECO DESIGN</div>
</div>
<div class="card-body">
<div class="card-title">Warm Hiking Fleece</div>
<div class="card-sub">Quechua . Men</div>
</div>
</div>
<div class="card">
<div class="card-header">
<div class="card-img">[IMG: Navy Sports Shorts]</div>
</div>
<div class="card-body">
<div class="card-title">Light Training Shorts</div>
<div class="card-sub">Domyos . Men</div>
</div>
</div>
</div>
</div>
<!-- Keyboard -->
<div class="keyboard">
<div class="kb-suggest">
<div class="s-chip">boots</div>
<div class="s-chip">BOOTS</div>
<div class="s-chip">BOOTSTRAP</div>
<div class="kb-mic">
<svg viewBox="0 0 24 24" width="40" height="40"><path fill="#d1d5db" d="M12 14a3 3 0 0 0 3-3V6a3 3 0 0 0-6 0v5a3 3 0 0 0 3 3zm5-3a5 5 0 0 1-10 0H5a7 7 0 0 0 6 6.92V20H9v2h6v-2h-2v-2.08A7 7 0 0 0 19 11h-2z"/></svg>
</div>
</div>
<div class="kb-rows">
<div class="kb-row">
<div class="key">Q</div><div class="key">W</div><div class="key">E</div><div class="key">R</div><div class="key">T</div><div class="key">Y</div><div class="key">U</div><div class="key">I</div><div class="key">O</div><div class="key">P</div>
</div>
<div class="kb-row mid">
<div class="key">A</div><div class="key">S</div><div class="key">D</div><div class="key">F</div><div class="key">G</div><div class="key">H</div><div class="key">J</div><div class="key">K</div><div class="key">L</div>
</div>
<div class="kb-row">
<div class="key">Z</div><div class="key">X</div><div class="key">C</div><div class="key">V</div><div class="key">B</div><div class="key">N</div><div class="key">M</div><div class="key">⌫</div><div class="key">,</div><div class="key">.</div>
</div>
<div class="kb-row bottom">
<div class="key">?123</div>
<div class="key">⎵</div>
<div class="key spacebar"></div>
<div class="key"></div>
<div class="key"></div>
<div class="key"></div>
<div class="key">↵</div>
</div>
</div>
<div class="search-fab">
<svg viewBox="0 0 24 24"><circle cx="11" cy="11" r="6"></circle><path d="M20 20l-4-4"></path></svg>
</div>
</div>
</div>
</body>
</html> |