File size: 5,836 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=1080, initial-scale=1.0" />
<title>Folders - Mock UI</title>
<style>
  body { margin: 0; padding: 0; background: transparent; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif; color: #EDEDED; }
  #render-target {
    width: 1080px;
    height: 2400px;
    position: relative;
    overflow: hidden;
    background: #1f1f1f;
  }

  /* Status bar */
  .status-bar {
    height: 110px;
    padding: 0 36px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #EDEDED;
    font-size: 36px;
    opacity: 0.95;
  }
  .status-icons { display: flex; gap: 24px; align-items: center; }

  /* App bar */
  .app-bar {
    height: 120px;
    display: flex;
    align-items: center;
    padding: 0 36px;
  }
  .app-title {
    display: flex;
    align-items: center;
    gap: 16px;
    font-weight: 600;
    font-size: 48px;
    color: #EDEDED;
    opacity: 0.95;
  }
  .app-title .logo {
    width: 56px; height: 56px; border-radius: 12px;
    background: #E0E0E0; border: 1px solid #BDBDBD;
    display: inline-flex; align-items: center; justify-content: center;
    color: #757575; font-size: 20px;
  }

  /* Favourites pill */
  .fav-pill {
    margin: 24px 36px 12px 36px;
    display: inline-flex;
    align-items: center;
    gap: 18px;
    padding: 26px 34px;
    border: 2px solid #5f6368;
    color: #EDEDED;
    border-radius: 22px;
    width: 420px;
    box-sizing: border-box;
    font-size: 40px;
  }
  .fav-pill svg { width: 44px; height: 44px; fill: none; stroke: #9aa0a6; stroke-width: 3.5; }

  /* Grid of albums */
  .grid {
    padding: 12px 36px 0 36px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
  .album {
    width: 100%;
  }
  .thumb {
    width: 100%;
    height: 520px;
    background: #E0E0E0;
    border: 1px solid #BDBDBD;
    border-radius: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #757575;
    font-size: 36px;
    text-align: center;
    box-sizing: border-box;
  }
  .album-title {
    margin-top: 18px;
    font-size: 44px;
    color: #EDEDED;
  }
  .album-sub {
    margin-top: 6px;
    font-size: 30px;
    color: #A8A8A8;
  }

  /* Overflow menu panel */
  .menu-panel {
    position: absolute;
    top: 220px;
    right: 36px;
    width: 480px;
    background: #333436;
    border-radius: 22px;
    box-shadow: 0 18px 40px rgba(0,0,0,0.5);
    overflow: hidden;
    z-index: 10;
  }
  .menu-item {
    padding: 34px 36px;
    font-size: 40px;
    color: #EDEDED;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }
  .menu-item:last-child { border-bottom: none; }

  /* Bottom navigation */
  .bottom-nav {
    position: absolute;
    left: 0; right: 0; bottom: 0;
    height: 180px;
    background: #2a2a2a;
    border-top: 1px solid #3b3b3b;
    display: flex;
    justify-content: space-around;
    align-items: center;
  }
  .nav-item {
    display: flex; flex-direction: column; align-items: center; gap: 10px;
    color: #BDBDBD; font-size: 30px;
  }
  .nav-item svg { width: 54px; height: 54px; }
  .nav-item.active { color: #6ea8ff; }
  .nav-item.active svg path, .nav-item.active svg rect { stroke: #6ea8ff; fill: none; }

  /* Gesture handle */
  .handle {
    position: absolute;
    left: 50%; transform: translateX(-50%);
    bottom: 28px;
    width: 300px; height: 8px; border-radius: 6px;
    background: #e6e6e6; opacity: 0.9;
  }
</style>
</head>
<body>
<div id="render-target">

  <!-- Simulated status bar -->
  <div class="status-bar">
    <div>6:11</div>
    <div class="status-icons">
      <span></span>
      <span>🔔</span>
      <span>🔍</span>
      <span>📶</span>
      <span>🔋 100%</span>
    </div>
  </div>

  <!-- App bar -->
  <div class="app-bar">
    <div class="app-title">
      <div class="logo">Logo</div>
      Gallery
    </div>
  </div>

  <!-- Favourites quick filter pill -->
  <div class="fav-pill">
    <svg viewBox="0 0 24 24" aria-hidden="true">
      <path d="M12 3l3 6 6 .9-4.5 4.4 1.1 6.2L12 17l-5.6 3.5 1.1-6.2L3 9.9 9 9l3-6z"></path>
    </svg>
    Favourites
  </div>

  <!-- Albums grid -->
  <div class="grid">
    <div class="album">
      <div class="thumb">[IMG: Yellow Bottle on Desk]</div>
      <div class="album-title">Camera</div>
      <div class="album-sub">5 items · 84 MB</div>
    </div>

    <div class="album">
      <div class="thumb">[IMG: Screenshots Placeholder]</div>
      <div class="album-title">Screenshots</div>
      <div class="album-sub">1 item · 86 kB</div>
    </div>

    <div class="album">
      <div class="thumb">[IMG: Triangle Sketch]</div>
      <div class="album-title">Infinite Painter</div>
      <div class="album-sub">2 items · 135 kB</div>
    </div>
  </div>

  <!-- Overflow menu -->
  <div class="menu-panel">
    <div class="menu-item">New Folder</div>
    <div class="menu-item">Settings</div>
    <div class="menu-item">Trash</div>
    <div class="menu-item">Favourites</div>
  </div>

  <!-- Bottom navigation -->
  <div class="bottom-nav">
    <div class="nav-item">
      <!-- Photos icon -->
      <svg viewBox="0 0 24 24">
        <rect x="3" y="5" width="18" height="14" rx="2" ry="2" fill="none" stroke="#BDBDBD" stroke-width="2"></rect>
        <path d="M7 13l3-3 4 5 3-4 3 5" fill="none" stroke="#BDBDBD" stroke-width="2" />
      </svg>
      <div>Photos</div>
    </div>
    <div class="nav-item active">
      <!-- Folder icon -->
      <svg viewBox="0 0 24 24">
        <path d="M3 6h6l2 2h10v10a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V6z" fill="none" stroke="#6ea8ff" stroke-width="2" />
      </svg>
      <div>Folders</div>
    </div>
  </div>

  <!-- Gesture handle -->
  <div class="handle"></div>
</div>
</body>
</html>