File size: 11,089 Bytes
98687c3
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=1080, initial-scale=1.0">
<title>Files 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 {
    position: relative;
    overflow: hidden;
    width: 1080px;
    height: 2400px;
    background: #121212;
    color: #ECECEC;
  }
  .status-bar {
    height: 88px;
    padding: 0 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #e7e7e7;
    font-weight: 600;
    letter-spacing: 0.5px;
    opacity: 0.95;
  }
  .sb-left { display: flex; align-items: center; gap: 18px; font-size: 36px; }
  .sb-right { display: flex; align-items: center; gap: 18px; }
  .icon { display: inline-flex; align-items: center; justify-content: center; }
  .top-search {
    margin: 20px 32px 6px 32px;
  }
  .search-bar {
    background: #1E1E1E;
    border-radius: 20px;
    height: 96px;
    display: flex;
    align-items: center;
    padding: 0 24px;
    gap: 20px;
    color: #BFBFBF;
    font-size: 36px;
  }
  .search-bar .placeholder { color: #BDBDBD; flex: 1; }
  .chips {
    display: flex;
    gap: 22px;
    margin: 18px 32px 10px 32px;
    flex-wrap: wrap;
  }
  .chip {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    padding: 18px 28px;
    border: 1px solid #3E3E3E;
    color: #DADADA;
    background: #161616;
    border-radius: 20px;
    font-size: 34px;
  }
  .section-title {
    margin: 24px 32px 8px 32px;
    color: #B9B9B9;
    font-size: 28px;
    letter-spacing: 1px;
  }
  .apps-row {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    margin: 12px 32px 14px 32px;
  }
  .app {
    width: 160px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    color: #EAEAEA;
    font-size: 30px;
  }
  .app .app-icon {
    width: 108px;
    height: 108px;
    border-radius: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #111;
  }
  .app .label {
    text-align: center;
    color: #D8D8D8;
    font-size: 30px;
  }
  .subheader-row {
    margin: 18px 32px 8px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .subheader-row .title {
    font-size: 36px;
    color: #EDEDED;
  }
  .grid-toggle {
    width: 52px;
    height: 52px;
    border-radius: 10px;
    border: 1px solid #3E3E3E;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #BDBDBD;
  }
  .grid {
    margin: 10px 32px 110px 32px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
  }
  .thumb {
    position: relative;
    width: 100%;
    height: 300px;
    background: #E0E0E0;
    border: 1px solid #BDBDBD;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #555;
    font-size: 28px;
    border-radius: 10px;
  }
  .overlay {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(0,0,0,0.6);
    width: 56px;
    height: 56px;
    border-radius: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .gesture-bar {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 28px;
    width: 420px;
    height: 14px;
    background: #FFFFFF;
    border-radius: 8px;
    opacity: 0.9;
  }
  /* Small helper svgs color */
  svg { fill: currentColor; }
</style>
</head>
<body>
<div id="render-target">
  <!-- Status Bar -->
  <div class="status-bar">
    <div class="sb-left">
      <span>8:52</span>
      <span class="icon" style="opacity:.85;">
        <svg width="34" height="34" viewBox="0 0 24 24"><circle cx="12" cy="12" r="3"/></svg>
      </span>
      <span class="icon" style="opacity:.85;">
        <svg width="34" height="34" viewBox="0 0 24 24"><rect x="4" y="10" width="16" height="4" rx="2"/></svg>
      </span>
      <span class="icon" style="opacity:.85;">
        <svg width="34" height="34" viewBox="0 0 24 24"><rect x="4" y="10" width="16" height="4" rx="2"/></svg>
      </span>
      <span class="icon" style="opacity:.85;">
        <svg width="34" height="34" viewBox="0 0 24 24"><circle cx="12" cy="12" r="2"/></svg>
      </span>
    </div>
    <div class="sb-right">
      <span class="icon">
        <svg width="40" height="40" viewBox="0 0 24 24">
          <path d="M4 12c4-6 12-6 16 0" stroke="currentColor" stroke-width="2" fill="none"/>
          <circle cx="12" cy="12" r="2"/>
        </svg>
      </span>
      <span class="icon">
        <svg width="40" height="40" viewBox="0 0 24 24">
          <rect x="3" y="8" width="14" height="10" rx="2" stroke="currentColor" stroke-width="2" fill="none"/>
          <rect x="5" y="10" width="10" height="6" fill="currentColor"/>
          <rect x="18" y="10" width="3" height="6" rx="1.5" fill="currentColor"/>
        </svg>
      </span>
    </div>
  </div>

  <!-- Search -->
  <div class="top-search">
    <div class="search-bar">
      <span class="icon" style="color:#CFCFCF;">
        <!-- Hamburger -->
        <svg width="44" height="44" viewBox="0 0 24 24">
          <rect x="3" y="6" width="18" height="2" rx="1"/><rect x="3" y="11" width="18" height="2" rx="1"/><rect x="3" y="16" width="18" height="2" rx="1"/>
        </svg>
      </span>
      <div class="placeholder">Search this phone</div>
      <span class="icon" style="color:#CFCFCF;">
        <!-- Vertical more -->
        <svg width="44" height="44" viewBox="0 0 24 24">
          <circle cx="12" cy="6" r="2"/><circle cx="12" cy="12" r="2"/><circle cx="12" cy="18" r="2"/>
        </svg>
      </span>
    </div>
  </div>

  <!-- Chips -->
  <div class="chips">
    <div class="chip">
      <span class="icon" style="color:#CFCFCF;">
        <!-- Tag icon -->
        <svg width="36" height="36" viewBox="0 0 24 24">
          <path d="M3 10l7-7h7v7l-7 7-7-7z" fill="none" stroke="currentColor" stroke-width="2"/>
          <circle cx="15" cy="9" r="1.5"/>
        </svg>
      </span>
      <span>Large files</span>
    </div>
    <div class="chip">
      <span class="icon" style="color:#CFCFCF;">
        <!-- Clock icon -->
        <svg width="36" height="36" viewBox="0 0 24 24">
          <circle cx="12" cy="12" r="8" fill="none" stroke="currentColor" stroke-width="2"/>
          <path d="M12 8v5l3 2" stroke="currentColor" stroke-width="2" fill="none"/>
        </svg>
      </span>
      <span>This week</span>
    </div>
  </div>

  <!-- Browse files section -->
  <div class="section-title">BROWSE FILES IN OTHER APPS</div>
  <div class="apps-row">
    <div class="app">
      <div class="app-icon" style="background:#4CAF50;">D</div>
      <div class="label">Drive</div>
    </div>
    <div class="app">
      <div class="app-icon" style="background:#FFC107;">P</div>
      <div class="label">Photos</div>
    </div>
    <div class="app">
      <div class="app-icon" style="background:#757575; color:#fff;">B</div>
      <div class="label">Bug reports</div>
    </div>
    <div class="app">
      <div class="app-icon" style="background:#8BC34A;">S</div>
      <div class="label">System trac...</div>
    </div>
    <div class="app">
      <div class="app-icon" style="background:#7CB342;">Z</div>
      <div class="label">ZArchiver</div>
    </div>
  </div>

  <!-- Recent images -->
  <div class="subheader-row">
    <div class="title">Recent images</div>
    <div class="grid-toggle">
      <svg width="28" height="28" viewBox="0 0 24 24">
        <rect x="3" y="4" width="7" height="7" rx="1"/>
        <rect x="14" y="4" width="7" height="7" rx="1"/>
        <rect x="3" y="15" width="7" height="7" rx="1"/>
        <rect x="14" y="15" width="7" height="7" rx="1"/>
      </svg>
    </div>
  </div>

  <div class="grid">
    <!-- Row 1 -->
    <div class="thumb"><div class="overlay">
      <svg width="26" height="26" viewBox="0 0 24 24" style="color:#fff">
        <path d="M8 3h3v2H8v3H6V5H3V3h3V0h2v3zm8 18h-3v-2h3v-3h2v3h3v2h-3v3h-2v-3z"/>
      </svg>
    </div>[IMG: Desk photo]</div>
    <div class="thumb"><div class="overlay">
      <svg width="26" height="26" viewBox="0 0 24 24" style="color:#fff">
        <path d="M8 3h3v2H8v3H6V5H3V3h3V0h2v3zm8 18h-3v-2h3v-3h2v3h3v2h-3v3h-2v-3z"/>
      </svg>
    </div>[IMG: Desk photo]</div>
    <div class="thumb"><div class="overlay">
      <svg width="26" height="26" viewBox="0 0 24 24" style="color:#fff">
        <path d="M8 3h3v2H8v3H6V5H3V3h3V0h2v3zm8 18h-3v-2h3v-3h2v3h3v2h-3v3h-2v-3z"/>
      </svg>
    </div>[IMG: Desk photo]</div>

    <!-- Row 2 -->
    <div class="thumb"><div class="overlay">
      <svg width="26" height="26" viewBox="0 0 24 24" style="color:#fff">
        <path d="M8 3h3v2H8v3H6V5H3V3h3V0h2v3zm8 18h-3v-2h3v-3h2v3h3v2h-3v3h-2v-3z"/>
      </svg>
    </div>[IMG: Desk photo]</div>
    <div class="thumb"><div class="overlay">
      <svg width="26" height="26" viewBox="0 0 24 24" style="color:#fff">
        <path d="M8 3h3v2H8v3H6V5H3V3h3V0h2v3zm8 18h-3v-2h3v-3h2v3h3v2h-3v3h-2v-3z"/>
      </svg>
    </div>[IMG: Desk photo]</div>
    <div class="thumb"><div class="overlay">
      <svg width="26" height="26" viewBox="0 0 24 24" style="color:#fff">
        <path d="M8 3h3v2H8v3H6V5H3V3h3V0h2v3zm8 18h-3v-2h3v-3h2v3h3v2h-3v3h-2v-3z"/>
      </svg>
    </div>[IMG: Desk photo]</div>

    <!-- Row 3 -->
    <div class="thumb"><div class="overlay">
      <svg width="26" height="26" viewBox="0 0 24 24" style="color:#fff">
        <path d="M8 3h3v2H8v3H6V5H3V3h3V0h2v3zm8 18h-3v-2h3v-3h2v3h3v2h-3v3h-2v-3z"/>
      </svg>
    </div>[IMG: Desk photo]</div>
    <div class="thumb"><div class="overlay">
      <svg width="26" height="26" viewBox="0 0 24 24" style="color:#fff">
        <path d="M8 3h3v2H8v3H6V5H3V3h3V0h2v3zm8 18h-3v-2h3v-3h2v3h3v2h-3v3h-2v-3z"/>
      </svg>
    </div>[IMG: Desk photo]</div>
    <div class="thumb"><div class="overlay">
      <svg width="26" height="26" viewBox="0 0 24 24" style="color:#fff">
        <path d="M8 3h3v2H8v3H6V5H3V3h3V0h2v3zm8 18h-3v-2h3v-3h2v3h3v2h-3v3h-2v-3z"/>
      </svg>
    </div>[IMG: Desk photo]</div>

    <!-- Row 4 -->
    <div class="thumb"><div class="overlay">
      <svg width="26" height="26" viewBox="0 0 24 24" style="color:#fff">
        <path d="M8 3h3v2H8v3H6V5H3V3h3V0h2v3zm8 18h-3v-2h3v-3h2v3h3v2h-3v3h-2v-3z"/>
      </svg>
    </div>[IMG: Desk photo]</div>
    <div class="thumb"><div class="overlay">
      <svg width="26" height="26" viewBox="0 0 24 24" style="color:#fff">
        <path d="M8 3h3v2H8v3H6V5H3V3h3V0h2v3zm8 18h-3v-2h3v-3h2v3h3v2h-3v3h-2v-3z"/>
      </svg>
    </div>[IMG: Desk photo]</div>
    <div class="thumb"><div class="overlay">
      <svg width="26" height="26" viewBox="0 0 24 24" style="color:#fff">
        <path d="M8 3h3v2H8v3H6V5H3V3h3V0h2v3zm8 18h-3v-2h3v-3h2v3h3v2h-3v3h-2v-3z"/>
      </svg>
    </div>[IMG: Hands on keyboard]</div>
  </div>

  <div class="gesture-bar"></div>
</div>
</body>
</html>