File size: 10,514 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 | <html lang="en">
<head>
<meta charset="UTF-8">
<title>Mobile UI Render</title>
<meta name="viewport" content="width=1080, initial-scale=1.0">
<style>
body { margin:0; padding:0; background:transparent; font-family: Arial, Helvetica, sans-serif; }
#render-target {
width:1080px; height:2400px; position:relative; overflow:hidden;
background:#FAFAFA; border-radius:0;
}
/* Status bar */
.status-bar {
height:120px; background:#EDEDED; color:#2E2E2E;
display:flex; align-items:center; justify-content:space-between;
padding:0 40px; font-weight:600; font-size:42px;
}
.status-right { display:flex; align-items:center; gap:26px; }
.status-icon { width:42px; height:42px; border-radius:8px; background:#CFCFCF; }
.battery {
width:84px; height:42px; border:2px solid #787878; border-radius:8px; position:relative;
}
.battery::after { content:""; position:absolute; right:-12px; top:12px; width:8px; height:18px; background:#787878; border-radius:2px; }
.battery-fill { position:absolute; left:4px; top:4px; bottom:4px; width:60%; background:#66BB6A; border-radius:6px; }
/* Search bar */
.search-wrap { padding:24px 24px 12px 24px; background:#FFFFFF; }
.search-bar {
height:120px; border-radius:24px; background:#F3F6F8; border:1px solid #D6DEE3;
display:flex; align-items:center; padding:0 28px; gap:24px;
}
.icon-btn {
width:72px; height:72px; border-radius:36px; display:flex; align-items:center; justify-content:center;
background:#FFFFFF; border:1px solid #D0D7DC;
}
.search-input {
flex:1; font-size:44px; color:#2E3A43;
}
.search-input .hint { color:#7A8894; }
.mic-btn { width:90px; height:90px; border-radius:45px; background:#CDEBFA; display:flex; align-items:center; justify-content:center; border:1px solid #98D4EE; }
/* Sections */
.content { padding:12px 24px 0 24px; }
.section-title {
font-size:48px; font-weight:800; color:#2B2B2B; letter-spacing:1px; margin:20px 8px;
}
.title-row { display:flex; align-items:center; gap:16px; }
.trend-pill {
display:inline-flex; align-items:center; padding:26px 28px; margin:16px 0;
font-size:36px; color:#1F2933; background:#FFFFFF; border:1px solid #D7D7D7; border-radius:18px;
width:100%;
}
/* Product cards */
.cards { display:flex; gap:24px; }
.card {
flex:1; min-width:0; background:#FFFFFF; border:1px solid #DADADA; border-radius:16px; overflow:hidden;
}
.card-img {
height:340px; background:#E0E0E0; border-bottom:1px solid #BDBDBD;
display:flex; align-items:center; justify-content:center; color:#757575; font-size:34px;
position:relative;
}
.badge {
position:absolute; left:12px; top:12px; padding:10px 16px; font-size:28px; font-weight:700;
color:#FFFFFF; background:#4CAF50; border-radius:24px;
}
.card-body { padding:18px; font-size:34px; color:#374151; }
/* Keyboard overlay */
.keyboard {
position:absolute; left:0; right:0; bottom:0;
height:980px; background:#121212; color:#FFFFFF; border-top:1px solid #2A2A2A;
padding-top:22px;
}
.kb-tools { display:flex; align-items:center; gap:42px; padding:0 36px 22px 36px; }
.kb-tool {
width:76px; height:76px; border-radius:18px; background:#1E1E1E;
border:1px solid #2D2D2D; display:flex; align-items:center; justify-content:center;
}
.kb-rows { padding:12px 18px; }
.kb-row { display:flex; justify-content:space-between; gap:14px; margin:18px 0; }
.key {
flex:1; height:120px; border-radius:18px; background:#222; border:1px solid #333;
display:flex; align-items:center; justify-content:center; font-size:58px; color:#F2F2F2;
}
.key.small { flex:0 0 120px; }
.key.wide { flex:2; }
.bottom-bar { display:flex; align-items:center; gap:16px; padding:10px 24px; }
.space { flex:1; height:120px; border-radius:18px; background:#222; border:1px solid #333; display:flex; align-items:center; justify-content:center; font-size:40px; color:#BDBDBD; }
.search-cta {
width:140px; height:140px; border-radius:70px; background:#B6F2F2; display:flex; align-items:center; justify-content:center; border:1px solid #8FE1E1;
}
/* SVG defaults */
svg { width:44px; height:44px; }
</style>
</head>
<body>
<div id="render-target">
<!-- Status Bar -->
<div class="status-bar">
<div>10:35</div>
<div class="status-right">
<div class="status-icon"></div>
<div class="status-icon"></div>
<div class="status-icon"></div>
<div class="battery"><div class="battery-fill"></div></div>
</div>
</div>
<!-- Search -->
<div class="search-wrap">
<div class="search-bar">
<div class="icon-btn">
<!-- back arrow -->
<svg viewBox="0 0 24 24">
<path d="M15 18L9 12l6-6" stroke="#263238" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
</div>
<div class="search-input">
<span class="hint">Search for "</span><span style="color:#2F6AA2; font-weight:700;">Runni</span><span class="hint">"</span>
</div>
<div class="mic-btn">
<!-- mic icon -->
<svg viewBox="0 0 24 24">
<path d="M12 14a3 3 0 0 0 3-3V7a3 3 0 1 0-6 0v4a3 3 0 0 0 3 3zm5-3a5 5 0 0 1-10 0M12 19v3" stroke="#0B6E99" stroke-width="2" fill="none" stroke-linecap="round"/>
</svg>
</div>
</div>
</div>
<!-- Content -->
<div class="content">
<div class="title-row">
<div class="section-title" style="margin:16px 0;">TRENDING SEARCHES</div>
<!-- trending up icon -->
<svg viewBox="0 0 24 24">
<path d="M3 17l6-6 4 4 6-8" stroke="#2F6AA2" stroke-width="2" fill="none" stroke-linecap="round"/>
</svg>
</div>
<div class="trend-pill">Easy Adjust Hiking Pole - Mt100 Comfort Black</div>
<div class="trend-pill">Easy Adjust Hiking Pole - Mt100 Comfort Black</div>
<div class="trend-pill">Hiking Pole - Mt100 Ergonomic Green</div>
<div class="trend-pill">Ultra Compact Trekking Pole - Mt900 Black</div>
<div class="trend-pill">Ultra Compact Trekking Pole - Mt900 Black</div>
<div class="section-title" style="margin:36px 4px;">TRENDING NEAR YOU</div>
<div class="cards">
<div class="card">
<div class="card-img">
<div class="badge">ECO DESIGN</div>
[IMG: Grey Outdoor Jacket]
</div>
<div class="card-body">Men’s Outdoor Jacket</div>
</div>
<div class="card">
<div class="card-img">[IMG: Navy Sports Shorts]</div>
<div class="card-body">Lightweight Sports Shorts</div>
</div>
</div>
</div>
<!-- Keyboard Overlay -->
<div class="keyboard">
<div class="kb-tools">
<div class="kb-tool">
<!-- grid icon -->
<svg viewBox="0 0 24 24">
<path d="M3 3h8v8H3zM13 3h8v8h-8zM3 13h8v8H3zM13 13h8v8h-8z" fill="#BDBDBD"/>
</svg>
</div>
<div class="kb-tool">
<!-- emoji -->
<svg viewBox="0 0 24 24">
<circle cx="12" cy="12" r="9" fill="none" stroke="#BDBDBD" stroke-width="2"/>
<circle cx="9" cy="10" r="1.5" fill="#BDBDBD"/>
<circle cx="15" cy="10" r="1.5" fill="#BDBDBD"/>
<path d="M8 15c2 2 6 2 8 0" stroke="#BDBDBD" stroke-width="2" fill="none" stroke-linecap="round"/>
</svg>
</div>
<div class="kb-tool">
<!-- GIF label -->
<span style="font-weight:800; color:#BDBDBD; font-size:30px;">GIF</span>
</div>
<div class="kb-tool">
<!-- translate -->
<svg viewBox="0 0 24 24">
<path d="M3 5h8v6H3zM13 5h8v14h-8zM5 17h6" stroke="#BDBDBD" stroke-width="2" fill="none"/>
</svg>
</div>
<div class="kb-tool">
<!-- settings -->
<svg viewBox="0 0 24 24">
<path d="M12 8a4 4 0 1 0 0 8 4 4 0 0 0 0-8zm9 4l-2-1 1-2-2-2-2 1-1-2h-4l-1 2-2-1-2 2 1 2-2 1v4l2 1-1 2 2 2 2-1 1 2h4l1-2 2 1 2-2-1-2 2-1v-4z" fill="#BDBDBD"/>
</svg>
</div>
<div class="kb-tool">
<!-- palette -->
<svg viewBox="0 0 24 24">
<path d="M12 3a9 9 0 0 0-9 9c0 5 4 9 9 9h4a3 3 0 0 0 0-6h-2a2 2 0 1 1 0-4h2a3 3 0 1 0 0-6h-4z" fill="#BDBDBD"/>
</svg>
</div>
<div class="kb-tool">
<!-- mic -->
<svg viewBox="0 0 24 24">
<path d="M12 14a3 3 0 0 0 3-3V7a3 3 0 1 0-6 0v4a3 3 0 0 0 3 3zm5-3a5 5 0 0 1-10 0M12 19v3" stroke="#BDBDBD" stroke-width="2" fill="none" stroke-linecap="round"/>
</svg>
</div>
</div>
<div class="kb-rows">
<!-- Row 1 -->
<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>
<!-- Row 2 -->
<div class="kb-row">
<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>
<!-- Row 3 -->
<div class="kb-row">
<div class="key small">⇧</div>
<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 small">
<!-- backspace -->
<svg viewBox="0 0 24 24">
<path d="M6 18l-4-6 4-6h11a3 3 0 0 1 3 3v6a3 3 0 0 1-3 3H6zM11 9l4 4-4 4" stroke="#F2F2F2" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
</div>
</div>
<!-- Bottom row -->
<div class="bottom-bar">
<div class="key small">?123</div>
<div class="key small">,</div>
<div class="space">space</div>
<div class="key small">.</div>
<div class="search-cta">
<!-- search icon -->
<svg viewBox="0 0 24 24">
<circle cx="11" cy="11" r="6" stroke="#0E5A61" stroke-width="2" fill="none"/>
<path d="M16 16l5 5" stroke="#0E5A61" stroke-width="2" stroke-linecap="round"/>
</svg>
</div>
</div>
</div>
</div>
</div>
</body>
</html> |