File size: 8,917 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
<html>
<head>
<meta charset="UTF-8">
<title>Mobile UI - Search Results</title>
<style>
  body { margin: 0; padding: 0; background: transparent; }
  #render-target {
    width: 1080px;
    height: 2400px;
    position: relative;
    overflow: hidden;
    background: #121212;
    color: #FFFFFF;
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  }

  /* Status bar */
  .status-bar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120px;
    padding: 0 36px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #fff;
    font-size: 42px;
  }
  .status-right {
    display: flex;
    align-items: center;
    gap: 22px;
    font-size: 34px;
    color: #cfcfcf;
  }
  .icon-battery {
    width: 70px; height: 36px; border: 3px solid #cfcfcf; border-radius: 6px; position: relative;
  }
  .icon-battery::after {
    content: "";
    position: absolute; right: -10px; top: 10px;
    width: 8px; height: 16px; background: #cfcfcf; border-radius: 2px;
  }
  .icon-battery-fill { width: 50px; height: 28px; background: #cfcfcf; margin: 4px; border-radius: 4px; }

  /* Search header */
  .search-header {
    position: absolute;
    top: 120px;
    left: 0;
    width: 100%;
    height: 120px;
    display: flex;
    align-items: center;
    padding: 0 24px;
    background: #1a1a1a;
    box-shadow: 0 1px 0 rgba(255,255,255,0.06) inset;
  }
  .back-btn, .close-btn {
    width: 96px; height: 96px; display: flex; align-items: center; justify-content: center;
  }
  .search-field {
    flex: 1;
    height: 90px;
    margin: 0 10px;
    display: flex;
    align-items: center;
    color: #eaeaea;
    font-size: 46px;
    letter-spacing: 0.2px;
  }

  /* Content list */
  .content {
    position: absolute;
    top: 240px;
    left: 0;
    width: 100%;
    bottom: 930px; /* leave room for keyboard */
    overflow: hidden;
    padding: 10px 24px;
  }

  .list-row {
    height: 140px;
    display: flex;
    align-items: center;
    padding: 0 6px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }
  .list-row .left-icon {
    width: 96px; height: 96px; display: flex; align-items: center; justify-content: center; margin-right: 20px;
  }
  .list-row .right-icon {
    margin-left: auto;
    width: 80px; height: 80px; display: flex; align-items: center; justify-content: center;
  }
  .row-title {
    font-size: 48px;
    color: #f5f5f5;
  }
  .row-subtitle {
    font-size: 34px;
    color: #9e9e9e;
    margin-top: 10px;
  }

  .pdf-row {
    height: 180px;
    display: flex;
    align-items: center;
    padding: 0 6px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }
  .pdf-icon {
    width: 88px; height: 88px;
    background: #E57373;
    border-radius: 12px;
    color: #1b1b1b;
    font-weight: 700;
    display: flex; align-items: center; justify-content: center;
    margin-right: 26px;
    font-size: 30px;
  }
  .pdf-text { flex: 1; }
  .pdf-title {
    font-size: 44px; color: #ffffff; line-height: 1.25;
  }
  .pdf-title .bold { font-weight: 700; }
  .pdf-meta { font-size: 34px; color: #9e9e9e; margin-top: 12px; }

  /* Floating search button */
  .fab {
    position: absolute;
    right: 36px;
    bottom: 1040px; /* sits above keyboard edge */
    width: 120px; height: 120px;
    background: #C8FF7E;
    border-radius: 60px;
    box-shadow: 0 6px 16px rgba(0,0,0,0.35);
    display: flex; align-items: center; justify-content: center;
  }

  /* Keyboard */
  .keyboard {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 930px;
    background: #1b1b1b;
    border-top-left-radius: 18px;
    border-top-right-radius: 18px;
    padding: 40px 28px 24px;
    box-shadow: 0 -6px 24px rgba(0,0,0,0.45);
  }
  .suggestions {
    display: flex; gap: 28px; color: #e0e0e0; font-size: 40px; margin-bottom: 26px; align-items: center;
  }
  .sugg-pill { padding: 12px 22px; background: #262626; border-radius: 18px; }
  .keys-row {
    display: grid;
    grid-template-columns: repeat(10, 1fr);
    gap: 20px;
    margin-bottom: 24px;
  }
  .keys-row.short { grid-template-columns: repeat(9, 1fr); }
  .keys-row.bottom { grid-template-columns: 1.2fr 7fr 1.2fr; }
  .key {
    height: 120px; background: #2a2a2a; border-radius: 22px;
    color: #ffffff; display: flex; align-items: center; justify-content: center;
    font-size: 48px;
    box-shadow: inset 0 -3px 0 rgba(255,255,255,0.05);
  }
  .key.small { font-size: 40px; }
  .space { height: 120px; background: #2a2a2a; border-radius: 22px; }
</style>
</head>
<body>
<div id="render-target">

  <!-- Status Bar -->
  <div class="status-bar">
    <div>9:37</div>
    <div class="status-right">
      <span>LR</span>
      <span>N</span>
      <span></span>
      <span>100%</span>
      <div class="icon-battery"><div class="icon-battery-fill"></div></div>
    </div>
  </div>

  <!-- Search Header -->
  <div class="search-header">
    <div class="back-btn">
      <svg width="60" height="60" viewBox="0 0 100 100">
        <path d="M70 15 L30 50 L70 85" stroke="#E0E0E0" stroke-width="12" fill="none" stroke-linecap="round" stroke-linejoin="round"></path>
      </svg>
    </div>
    <div class="search-field">JRR Tolkien</div>
    <div class="close-btn">
      <svg width="60" height="60" viewBox="0 0 100 100">
        <path d="M20 20 L80 80 M80 20 L20 80" stroke="#E0E0E0" stroke-width="12" stroke-linecap="round"></path>
      </svg>
    </div>
  </div>

  <!-- Content / Results -->
  <div class="content">
    <!-- Suggestion row -->
    <div class="list-row">
      <div class="left-icon">
        <svg width="70" height="70" viewBox="0 0 100 100">
          <circle cx="42" cy="42" r="28" stroke="#BDBDBD" stroke-width="8" fill="none"></circle>
          <line x1="66" y1="66" x2="90" y2="90" stroke="#BDBDBD" stroke-width="8" stroke-linecap="round"></line>
        </svg>
      </div>
      <div>
        <div class="row-title">JRR Tolkien</div>
      </div>
      <div class="right-icon">
        <svg width="70" height="70" viewBox="0 0 100 100">
          <path d="M30 70 L70 30" stroke="#9E9E9E" stroke-width="10" stroke-linecap="round"></path>
          <path d="M70 30 L70 55 L45 55" stroke="#9E9E9E" stroke-width="10" fill="none" stroke-linecap="round" stroke-linejoin="round"></path>
        </svg>
      </div>
    </div>

    <!-- PDF result row 1 -->
    <div class="pdf-row">
      <div class="pdf-icon">PDF</div>
      <div class="pdf-text">
        <div class="pdf-title">Copy of <span class="bold">JRR Tolkien</span> - Lord of the Rings Co...</div>
        <div class="pdf-meta">Modified Oct 6</div>
      </div>
    </div>

    <!-- PDF result row 2 -->
    <div class="pdf-row">
      <div class="pdf-icon">PDF</div>
      <div class="pdf-text">
        <div class="pdf-title"><span class="bold">JRR Tolkien</span> - Lord of the Rings Collection....</div>
        <div class="pdf-meta">Modified Oct 6</div>
      </div>
    </div>
  </div>

  <!-- Floating search button -->
  <div class="fab">
    <svg width="64" height="64" viewBox="0 0 100 100">
      <circle cx="42" cy="42" r="28" stroke="#2E2E2E" stroke-width="8" fill="none"></circle>
      <line x1="66" y1="66" x2="90" y2="90" stroke="#2E2E2E" stroke-width="8" stroke-linecap="round"></line>
    </svg>
  </div>

  <!-- Keyboard -->
  <div class="keyboard">
    <div class="suggestions">
      <div class="sugg-pill">Tolkien</div>
      <div class="sugg-pill">Tolkien's</div>
      <div style="margin-left:auto;">
        <svg width="60" height="60" viewBox="0 0 100 100">
          <circle cx="42" cy="42" r="28" stroke="#BDBDBD" stroke-width="8" fill="none"></circle>
          <line x1="66" y1="66" x2="90" y2="90" stroke="#BDBDBD" stroke-width="8" stroke-linecap="round"></line>
        </svg>
      </div>
    </div>

    <div class="keys-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="keys-row short">
      <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="keys-row short">
      <div class="key small">z</div><div class="key small">x</div><div class="key small">c</div><div class="key small">v</div>
      <div class="key small">b</div><div class="key small">n</div><div class="key small">m</div>
      <div class="key small"></div><div class="key small"></div>
    </div>
    <div class="keys-row bottom">
      <div class="key small">?123</div>
      <div class="space"></div>
      <div class="key small">.</div>
    </div>
  </div>

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