File size: 10,410 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
333
334
335
336
337
338
339
<html>
<head>
<meta charset="UTF-8">
<title>Search Page UI</title>
<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: #ffffff;
  }

  /* Top system/status bar */
  .status-bar {
    position: absolute;
    top: 0;
    left: 0;
    width: 1080px;
    height: 120px;
    background: #d0d0d0;
    display: flex;
    align-items: center;
    padding: 0 40px;
    box-sizing: border-box;
    color: #111;
    font-size: 40px;
    letter-spacing: 1px;
  }
  .status-right {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 26px;
  }
  .status-icon { width: 44px; height: 44px; }
  .battery {
    width: 80px; height: 40px;
  }

  /* Header area with back */
  .header {
    position: absolute;
    top: 120px;
    left: 0;
    width: 1080px;
    height: 160px;
    background: #d7d7d7;
  }
  .back-btn {
    position: absolute;
    left: 40px;
    top: 50px;
    width: 80px;
    height: 80px;
  }

  /* Main content */
  .content {
    position: absolute;
    top: 280px;
    left: 0;
    width: 1080px;
    height: 1320px;
    background: #ffffff;
    box-sizing: border-box;
    padding: 40px 40px 0 40px;
  }
  .title-row {
    display: flex;
    align-items: center;
    font-weight: 700;
    font-size: 54px;
    color: #222;
  }
  .title-row .clear {
    margin-left: auto;
    font-size: 42px;
    color: #555;
  }
  .list {
    margin-top: 30px;
  }
  .item {
    height: 160px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #eee;
  }
  .clock {
    width: 68px; height: 68px; margin-right: 28px;
  }
  .item-text {
    font-size: 44px;
    color: #222;
  }
  .chevron {
    margin-left: auto;
    width: 38px; height: 38px;
  }
  .sub-title {
    font-size: 50px;
    font-weight: 700;
    color: #222;
    margin-top: 38px;
  }

  /* Bottom quick actions bar */
  .actions-bar {
    position: absolute;
    left: 0;
    bottom: 900px; /* sits right above keyboard */
    width: 1080px;
    height: 150px;
    background: #ffffff;
    border-top: 1px solid #eaeaea;
    display: flex;
    align-items: center;
    justify-content: space-around;
    color: #333;
  }
  .action {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 14px;
    font-size: 36px;
  }
  .action svg { width: 64px; height: 64px; }

  /* Keyboard mock */
  .keyboard {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 1080px;
    height: 900px;
    background: #0f1a1d;
    color: #e0e6e8;
    box-sizing: border-box;
    padding: 30px 24px;
  }
  .kb-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 28px;
  }
  .key {
    width: 88px;
    height: 120px;
    background: #233037;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 52px;
    color: #cfd8dc;
  }
  .key.wide { width: 160px; }
  .space { flex: 1; height: 120px; margin: 0 18px; }
  .space .key { width: 100%; }
  .key.light { background: #2b3a41; }
  .search-btn {
    width: 160px; height: 160px; background: #9be7c3; border-radius: 80px;
    display: flex; align-items: center; justify-content: center;
    position: absolute; right: 40px; bottom: 30px;
  }
  .backspace { width: 120px; height: 120px; }
  .caps { width: 120px; height: 120px; }

  /* Chevron grey arrows in list */
  .chevron path { stroke: #555; }

</style>
</head>
<body>
<div id="render-target">

  <!-- Status bar -->
  <div class="status-bar">
    <div>1:44</div>
    <div class="status-right">
      <!-- WiFi -->
      <svg class="status-icon" viewBox="0 0 24 24">
        <path d="M2 8c5-4 15-4 20 0" stroke="#222" stroke-width="2" fill="none" stroke-linecap="round"/>
        <path d="M5 12c4-3 10-3 14 0" stroke="#222" stroke-width="2" fill="none" stroke-linecap="round"/>
        <circle cx="12" cy="16" r="2" fill="#222"></circle>
      </svg>
      <!-- Battery -->
      <svg class="battery" viewBox="0 0 50 24">
        <rect x="1" y="4" width="42" height="16" rx="3" ry="3" fill="none" stroke="#222" stroke-width="2"></rect>
        <rect x="4" y="7" width="30" height="10" rx="2" fill="#222"></rect>
        <rect x="44" y="9" width="4" height="6" fill="#222"></rect>
      </svg>
      <!-- Signal dot -->
      <svg class="status-icon" viewBox="0 0 24 24">
        <circle cx="12" cy="12" r="10" fill="#fff" stroke="#222" stroke-width="2"></circle>
        <circle cx="12" cy="12" r="5" fill="#222"></circle>
      </svg>
      <!-- Percent -->
      <div style="font-size:40px;">100%</div>
    </div>
  </div>

  <!-- Header with back arrow -->
  <div class="header">
    <svg class="back-btn" viewBox="0 0 24 24">
      <path d="M15 19L8 12l7-7" stroke="#111" stroke-width="3" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
    </svg>
  </div>

  <!-- Main content -->
  <div class="content">
    <div class="title-row">
      <div>Search history</div>
      <div class="clear">Clear</div>
    </div>

    <div class="list">
      <!-- Item 1 -->
      <div class="item">
        <svg class="clock" viewBox="0 0 24 24">
          <circle cx="12" cy="12" r="9" fill="none" stroke="#222" stroke-width="2"></circle>
          <path d="M12 6v6l4 2" stroke="#222" stroke-width="2" fill="none" stroke-linecap="round"/>
        </svg>
        <div class="item-text">h&amp;m shoes</div>
        <svg class="chevron" viewBox="0 0 24 24">
          <path d="M9 5l7 7-7 7" stroke="#777" stroke-width="3" fill="none" stroke-linecap="round"/>
        </svg>
      </div>

      <!-- Item 2 -->
      <div class="item">
        <svg class="clock" viewBox="0 0 24 24">
          <circle cx="12" cy="12" r="9" fill="none" stroke="#222" stroke-width="2"></circle>
          <path d="M12 6v6l4 2" stroke="#222" stroke-width="2" fill="none" stroke-linecap="round"/>
        </svg>
        <div class="item-text">loafer</div>
        <svg class="chevron" viewBox="0 0 24 24">
          <path d="M9 5l7 7-7 7" stroke="#777" stroke-width="3" fill="none" stroke-linecap="round"/>
        </svg>
      </div>

      <!-- Item 3 -->
      <div class="item">
        <svg class="clock" viewBox="0 0 24 24">
          <circle cx="12" cy="12" r="9" fill="none" stroke="#222" stroke-width="2"></circle>
          <path d="M12 6v6l4 2" stroke="#222" stroke-width="2" fill="none" stroke-linecap="round"/>
        </svg>
        <div class="item-text">loafar</div>
        <svg class="chevron" viewBox="0 0 24 24">
          <path d="M9 5l7 7-7 7" stroke="#777" stroke-width="3" fill="none" stroke-linecap="round"/>
        </svg>
      </div>
    </div>

    <div class="sub-title">Most popular searches</div>
    <!-- empty placeholder area -->
    <div style="height: 720px;"></div>
  </div>

  <!-- Quick actions bar -->
  <div class="actions-bar">
    <div class="action">
      <svg viewBox="0 0 24 24">
        <rect x="3" y="5" width="18" height="14" rx="3" fill="none" stroke="#333" stroke-width="2"></rect>
        <circle cx="12" cy="12" r="4" fill="none" stroke="#333" stroke-width="2"></circle>
      </svg>
      <div>Take Photo</div>
    </div>
    <div class="action">
      <svg viewBox="0 0 24 24">
        <rect x="3" y="3" width="18" height="18" rx="2" fill="none" stroke="#333" stroke-width="2"></rect>
        <rect x="7" y="7" width="10" height="10" rx="1" fill="none" stroke="#333" stroke-width="2"></rect>
      </svg>
      <div>Scan Code</div>
    </div>
    <div class="action">
      <svg viewBox="0 0 24 24">
        <path d="M12 3c3.9 0 7 3.1 7 7 0 5.2-7 11-7 11S5 15.2 5 10c0-3.9 3.1-7 7-7z" fill="none" stroke="#333" stroke-width="2"></path>
        <circle cx="12" cy="10" r="3" fill="none" stroke="#333" stroke-width="2"></circle>
      </svg>
      <div>Find Store</div>
    </div>
  </div>

  <!-- Keyboard mock -->
  <div class="keyboard">
    <!-- top utility icons row (minimal) -->
    <div style="display:flex; gap:30px; margin-bottom:20px; align-items:center;">
      <div style="width:70px; height:70px; background:#223038; border-radius:14px; display:flex; align-items:center; justify-content:center;">
        <svg viewBox="0 0 24 24" width="40" height="40">
          <circle cx="9" cy="9" r="5" fill="none" stroke="#cfd8dc" stroke-width="2"></circle>
          <rect x="12" y="12" width="7" height="7" fill="none" stroke="#cfd8dc" stroke-width="2"></rect>
        </svg>
      </div>
      <div style="color:#cfd8dc; font-size:36px;">GIF</div>
      <div style="color:#cfd8dc; font-size:36px;">⚙️</div>
      <div style="color:#cfd8dc; font-size:36px;">G</div>
      <div style="color:#cfd8dc; font-size:36px;">🎨</div>
      <div style="margin-left:auto; color:#cfd8dc; font-size:36px;">🎤</div>
    </div>

    <!-- 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">
      <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 caps"></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 backspace"></div>
    </div>
    <div class="kb-row" style="align-items:center;">
      <div class="key wide" style="background:#78b995; color:#083;">?123</div>
      <div class="key light">,</div>
      <div class="key light"></div>
      <div class="space"><div class="key light"></div></div>
      <div class="key light">.</div>
    </div>

    <!-- floating green search button -->
    <div class="search-btn">
      <svg viewBox="0 0 24 24" width="90" height="90">
        <circle cx="11" cy="11" r="7" fill="none" stroke="#083" stroke-width="2"></circle>
        <path d="M16.5 16.5L22 22" stroke="#083" stroke-width="2" stroke-linecap="round"></path>
      </svg>
    </div>
  </div>

</div>
</body>
</html>