File size: 9,381 Bytes
c32f9a6
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Search UI</title>
<style>
  body { margin: 0; padding: 0; background: transparent; font-family: "Inter", Arial, sans-serif; }
  #render-target {
    width: 1080px;
    height: 2400px;
    position: relative;
    overflow: hidden;
    background: #FFFFFF;
  }

  /* Status bar */
  .status-bar {
    height: 120px;
    padding: 0 36px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #2E2E2E;
    font-weight: 600;
    font-size: 36px;
  }
  .status-right {
    display: flex;
    align-items: center;
    gap: 18px;
  }
  .dot {
    width: 24px; height: 24px; background: #5A5A5A; border-radius: 50%;
  }
  .status-icon {
    width: 38px; height: 38px; border-radius: 8px; border: 1px solid #CFCFCF; display: inline-flex; align-items: center; justify-content: center;
  }

  /* Header with back and search */
  .header {
    padding: 10px 36px 24px 36px;
  }
  .search-row {
    display: flex; align-items: center; gap: 24px;
  }
  .back-btn {
    width: 56px; height: 56px; display: inline-flex; align-items: center; justify-content: center;
  }
  .search-input {
    flex: 1;
    height: 96px;
    border: 1px solid #E0E0E0;
    border-radius: 48px;
    display: flex;
    align-items: center;
    padding: 0 28px;
    gap: 18px;
    color: #9E9E9E;
    font-size: 40px;
  }
  .caret {
    width: 3px; height: 54px; background: #2AC06E; border-radius: 2px;
  }
  .divider {
    height: 1px; background: #E9E9E9; margin-top: 18px;
  }

  /* List area */
  .content {
    padding: 24px 36px 0 36px;
  }
  .item {
    display: flex; align-items: center; gap: 28px;
    margin: 26px 0;
  }
  .square {
    width: 120px; height: 120px; background: #F8F8F8; border: 1px solid #E0E0E0; border-radius: 28px; display: flex; align-items: center; justify-content: center;
  }
  .title {
    font-size: 44px; color: #111111; font-weight: 700; line-height: 1.2;
  }
  .subtitle {
    font-size: 28px; color: #6A6A6A; margin-top: 6px;
  }
  .section-label {
    margin-top: 24px;
    color: #333333; font-weight: 700; font-size: 24px; letter-spacing: 2px;
  }

  .thumb {
    width: 160px; height: 160px; background: #E0E0E0; border: 1px solid #BDBDBD; border-radius: 24px;
    display: flex; align-items: center; justify-content: center; color: #757575; font-size: 26px; text-align: center; padding: 10px;
  }

  /* Keyboard mock */
  .keyboard {
    position: absolute;
    left: 0; right: 0; bottom: 44px;
    height: 860px;
    background: #F0F2E9;
    border-top: 1px solid #E2E4D9;
    padding: 24px 24px 36px 24px;
  }
  .kb-toolbar {
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 40px; margin-bottom: 18px;
  }
  .kb-tool {
    width: 64px; height: 64px; border-radius: 20px; background: #FFFFFF; border: 1px solid #DADADA;
    display: flex; align-items: center; justify-content: center; color: #707070; font-size: 24px;
  }
  .keys-row {
    display: flex; justify-content: center; gap: 18px; margin: 16px 0;
  }
  .key {
    width: 84px; height: 108px; background: #FFFFFF; border: 1px solid #E1E1E1; border-radius: 24px;
    display: flex; align-items: center; justify-content: center; font-size: 36px; color: #202020; box-shadow: 0 1px 0 #EFEFEF inset;
  }
  .key-wide {
    width: 540px;
  }
  .key-mid {
    width: 120px;
  }
  .key-green {
    background: #DCEAD4; border-color: #CBDAC3;
  }

  /* Bottom navigation pill */
  .nav-pill {
    position: absolute; bottom: 10px; left: 50%; transform: translateX(-50%);
    width: 240px; height: 16px; border-radius: 8px; background: #9E9E9E; opacity: 0.6;
  }

  /* Simple inline icon wrappers */
  .svg-24 { width: 36px; height: 36px; }
  .svg-32 { width: 42px; height: 42px; }
</style>
</head>
<body>
<div id="render-target">

  <!-- Status bar -->
  <div class="status-bar">
    <div>1:00</div>
    <div class="status-right">
      <div class="dot"></div>
      <div class="dot"></div>
      <div class="dot"></div>
      <div style="color:#7C7C7C;font-weight:700;">oyo</div>
      <div class="dot" style="opacity:.4;"></div>
      <div class="status-icon">
        <!-- wifi -->
        <svg class="svg-24" viewBox="0 0 24 24">
          <path d="M12 18.5a1.5 1.5 0 1 0 0 3 1.5 1.5 0 0 0 0-3zm-7-7c4.7-4.7 15.3-4.7 20 0" fill="none" stroke="#5A5A5A" stroke-width="2" stroke-linecap="round"/>
          <path d="M5 14c5-5 14-5 19 0" fill="none" stroke="#5A5A5A" stroke-width="2" stroke-linecap="round"/>
          <path d="M8 16.5c3.5-3 9-3 12.5 0" fill="none" stroke="#5A5A5A" stroke-width="2" stroke-linecap="round"/>
        </svg>
      </div>
      <div class="status-icon">
        <!-- battery -->
        <svg class="svg-24" viewBox="0 0 24 24">
          <rect x="3" y="6" width="16" height="12" rx="2" ry="2" fill="none" stroke="#5A5A5A" stroke-width="2"/>
          <rect x="5" y="8" width="12" height="8" fill="#5A5A5A"/>
          <rect x="20" y="10" width="2" height="4" fill="#5A5A5A"/>
        </svg>
      </div>
    </div>
  </div>

  <!-- Header -->
  <div class="header">
    <div class="search-row">
      <div class="back-btn">
        <svg class="svg-32" viewBox="0 0 24 24">
          <path d="M15 6L9 12l6 6" fill="none" stroke="#000" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
        </svg>
      </div>
      <div class="search-input">
        <svg class="svg-32" viewBox="0 0 24 24">
          <circle cx="10" cy="10" r="6" fill="none" stroke="#7A7A7A" stroke-width="2"/>
          <path d="M15 15l5 5" stroke="#7A7A7A" stroke-width="2" stroke-linecap="round"/>
        </svg>
        <div class="caret"></div>
        <div>Where to?</div>
      </div>
    </div>
    <div class="divider"></div>
  </div>

  <!-- Content list -->
  <div class="content">
    <!-- Nearby -->
    <div class="item" style="margin-top: 24px;">
      <div class="square">
        <svg class="svg-32" viewBox="0 0 24 24">
          <path d="M3 12l18-7-7 18-3-8-8-3z" fill="none" stroke="#4A4A4A" stroke-width="2" stroke-linejoin="round"/>
        </svg>
      </div>
      <div>
        <div class="title">Nearby</div>
      </div>
    </div>

    <!-- Recent label -->
    <div class="section-label">RECENT</div>

    <!-- Honolulu -->
    <div class="item">
      <div class="square">
        <svg class="svg-32" viewBox="0 0 24 24">
          <path d="M12 22s7-6.2 7-11a7 7 0 1 0-14 0c0 4.8 7 11 7 11z" fill="none" stroke="#2E2E2E" stroke-width="2"/>
          <circle cx="12" cy="11" r="2.2" fill="none" stroke="#2E2E2E" stroke-width="2"/>
        </svg>
      </div>
      <div>
        <div class="title">Honolulu</div>
        <div class="subtitle">Hawaii, United States</div>
      </div>
    </div>

    <!-- Hawaii -->
    <div class="item">
      <div class="square">
        <svg class="svg-32" viewBox="0 0 24 24">
          <path d="M12 22s7-6.2 7-11a7 7 0 1 0-14 0c0 4.8 7 11 7 11z" fill="none" stroke="#2E2E2E" stroke-width="2"/>
          <circle cx="12" cy="11" r="2.2" fill="none" stroke="#2E2E2E" stroke-width="2"/>
        </svg>
      </div>
      <div>
        <div class="title">Hawaii</div>
        <div class="subtitle">United States, North America</div>
      </div>
    </div>

    <!-- Dolphins item -->
    <div class="item" style="margin-top: 20px;">
      <div class="thumb">[IMG: Dolphins swimming in blue water]</div>
      <div>
        <div class="title" style="max-width: 770px;">
          Swim with Dolphins in the West Coast line of Oahu
        </div>
        <div class="subtitle">Honolulu, Hawaii</div>
      </div>
    </div>
  </div>

  <!-- Keyboard mock -->
  <div class="keyboard">
    <div class="kb-toolbar">
      <div class="kb-tool">😊</div>
      <div class="kb-tool">GIF</div>
      <div class="kb-tool">⚙️</div>
      <div class="kb-tool">G↔︎</div>
      <div class="kb-tool">🎨</div>
      <div class="kb-tool">🎤</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">
      <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">
      <div class="key key-green"></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 key-green"></div>
    </div>
    <div class="keys-row" style="gap: 14px;">
      <div class="key key-green">?123</div>
      <div class="key key-green">,</div>
      <div class="key">😊</div>
      <div class="key key-wide"></div>
      <div class="key">.</div>
      <div class="key key-green">
        <svg class="svg-24" viewBox="0 0 24 24">
          <circle cx="10" cy="10" r="6" fill="none" stroke="#333" stroke-width="2"/>
          <path d="M15 15l5 5" stroke="#333" stroke-width="2" stroke-linecap="round"/>
        </svg>
      </div>
    </div>
  </div>

  <div class="nav-pill"></div>
</div>
</body>
</html>