File size: 10,718 Bytes
67530d2
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Inbox UI Mock</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:#0f0f12; border-radius:24px; box-shadow:0 10px 30px rgba(0,0,0,0.35);
    color:#fff;
  }

  /* Top area */
  .topbar {
    position:absolute; left:0; top:0; width:100%; height:220px;
    background:#5b45c9;
  }
  .status {
    height:80px; display:flex; align-items:center; padding:0 32px; color:#fff; font-size:34px;
  }
  .status .icons { margin-left:auto; display:flex; align-items:center; gap:22px; }
  .appbar {
    height:140px; display:flex; align-items:center; padding:0 28px;
    color:#fff;
  }
  .appbar .title { font-size:56px; font-weight:700; margin-left:24px; }
  .appbar .right { margin-left:auto; display:flex; align-items:center; gap:36px; }

  /* List */
  .list {
    position:absolute; left:0; right:0; top:220px; bottom:210px;
    background:#101010; overflow:hidden; /* static mock, no scroll */
  }
  .item {
    position:relative;
    padding:34px 40px 30px 40px;
    border-bottom:1px solid #1d1d1d;
    background:#000;
  }
  .item.dim { background:#2b2b2f; }
  .sender-row {
    display:flex; align-items:center; gap:18px; margin-bottom:14px;
    color:#e5e5e5; font-weight:700; font-size:40px;
  }
  .dot {
    width:16px; height:16px; border-radius:50%; background:#3da7ff; display:inline-block;
  }
  .subject {
    font-size:44px; font-weight:800; color:#fff; line-height:1.2; margin-bottom:10px;
  }
  .sub-dark { color:#ddd; font-weight:700; }
  .preview-time {
    display:flex; align-items:center; justify-content:space-between;
    color:#b7b7b7; font-size:32px;
  }
  .time { color:#bcbcbc; margin-left:12px; white-space:nowrap; }

  .star {
    position:absolute; right:40px; top:36px;
  }
  .star svg { width:46px; height:46px; }
  .star.outline svg path { fill:none; stroke:#bfbfbf; stroke-width:3; }
  .star.filled svg path { fill:#ff8f3a; stroke:#ff8f3a; }

  /* Bottom nav */
  .bottom-nav {
    position:absolute; left:0; right:0; bottom:0; height:190px;
    background:#1b1b1d; display:flex; align-items:center; justify-content:space-around;
    padding:0 40px;
  }
  .nav-icon { width:92px; height:92px; display:flex; align-items:center; justify-content:center; }
  .nav-icon svg { width:72px; height:72px; }
  .nav-icon .circle {
    width:100px; height:100px; border-radius:50%; border:2px solid #666; display:flex; align-items:center; justify-content:center;
  }
  .gesture {
    position:absolute; bottom:210px; left:50%; transform:translateX(-50%);
    width:320px; height:14px; background:#e9e9e9; border-radius:12px; opacity:0.9;
  }
</style>
</head>
<body>
<div id="render-target">

  <!-- Top purple area -->
  <div class="topbar">
    <div class="status">
      <div>12:34</div>
      <div class="icons">
        <!-- small status icons -->
        <svg viewBox="0 0 24 24" width="30" height="30">
          <circle cx="12" cy="12" r="9" fill="none" stroke="#fff" stroke-width="2"></circle>
          <path d="M8 12h8" stroke="#fff" stroke-width="2" stroke-linecap="round"></path>
        </svg>
        <svg viewBox="0 0 24 24" width="30" height="30">
          <path d="M4 8h16M4 12h12M4 16h8" stroke="#fff" stroke-width="2" fill="none" stroke-linecap="round"></path>
        </svg>
        <svg viewBox="0 0 24 24" width="30" height="30">
          <path d="M5 14l4-4 4 4 6-6" stroke="#fff" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"></path>
        </svg>
        <svg viewBox="0 0 24 24" width="30" height="30">
          <path d="M3 12h14l4-3v6l-4-3H3z" fill="none" stroke="#fff" stroke-width="2"></path>
        </svg>
      </div>
    </div>
    <div class="appbar">
      <!-- hamburger -->
      <svg viewBox="0 0 24 24" width="48" height="48">
        <path d="M3 6h18M3 12h18M3 18h18" stroke="#fff" stroke-width="3" stroke-linecap="round" fill="none"></path>
      </svg>
      <div class="title">All Mail</div>
      <div class="right">
        <!-- pulse/zigzag icon -->
        <svg viewBox="0 0 24 24" width="48" height="48">
          <path d="M3 14l4-6 4 8 4-5 6 3" stroke="#fff" stroke-width="2.5" fill="none" stroke-linecap="round" stroke-linejoin="round"></path>
        </svg>
        <!-- search icon -->
        <svg viewBox="0 0 24 24" width="48" height="48">
          <circle cx="11" cy="11" r="7" stroke="#fff" stroke-width="2.5" fill="none"></circle>
          <path d="M20 20l-4-4" stroke="#fff" stroke-width="2.5" stroke-linecap="round"></path>
        </svg>
      </div>
    </div>
  </div>

  <!-- List items -->
  <div class="list">
    <!-- Email 1 -->
    <div class="item">
      <div class="sender-row">
        <span class="dot"></span>
        <span>Raghav Himatsingka</span>
      </div>
      <div class="subject">Secret 1 of Upcoming Masterclass For Your Child</div>
      <div class="preview-time">
        <div class="preview">Sneak Preview of your upcoming Masterclass!</div>
        <div class="time">14m</div>
      </div>
      <div class="star outline">
        <svg viewBox="0 0 24 24">
          <path d="M12 3l3.1 6.3 7 1-5.1 4.7 1.5 7-6.5-3.6-6.5 3.6 1.5-7-5.1-4.7 7-1z"></path>
        </svg>
      </div>
    </div>

    <!-- Email 2 -->
    <div class="item">
      <div class="sender-row">
        <span>Me &amp; dbwscratch.test.id6</span>
      </div>
      <div class="subject sub-dark">Re: Working from office</div>
      <div class="preview-time">
        <div class="preview">I will come office from 1 Sep 2023.</div>
        <div class="time">1h</div>
      </div>
      <div class="star outline">
        <svg viewBox="0 0 24 24">
          <path d="M12 3l3.1 6.3 7 1-5.1 4.7 1.5 7-6.5-3.6-6.5 3.6 1.5-7-5.1-4.7 7-1z"></path>
        </svg>
      </div>
    </div>

    <!-- Email 3 -->
    <div class="item">
      <div class="sender-row">
        <span>Me &amp; Cerebra</span>
      </div>
      <div class="subject">OFFICIAL WEEKEND PARTY</div>
      <div class="preview-time">
        <div class="preview">Thanks a lot.</div>
        <div class="time">2h</div>
      </div>
      <div class="star outline">
        <svg viewBox="0 0 24 24">
          <path d="M12 3l3.1 6.3 7 1-5.1 4.7 1.5 7-6.5-3.6-6.5 3.6 1.5-7-5.1-4.7 7-1z"></path>
        </svg>
      </div>
    </div>

    <!-- Email 4 (Dim background + orange star) -->
    <div class="item dim">
      <div class="sender-row">
        <span class="dot"></span>
        <span>Glow Nurture</span>
      </div>
      <div class="subject">Your baby on Day 302</div>
      <div class="preview-time">
        <div class="preview"></div>
        <div class="time">2h</div>
      </div>
      <div class="star filled">
        <svg viewBox="0 0 24 24">
          <path d="M12 3l3.1 6.3 7 1-5.1 4.7 1.5 7-6.5-3.6-6.5 3.6 1.5-7-5.1-4.7 7-1z"></path>
        </svg>
      </div>
    </div>

    <!-- Email 5 -->
    <div class="item">
      <div class="sender-row">
        <span>Cerebra Research</span>
      </div>
      <div class="subject sub-dark">Event organiser</div>
      <div class="preview-time">
        <div class="preview">Hello, I am organising a small event on 14th August...</div>
        <div class="time">2h</div>
      </div>
      <div class="star outline">
        <svg viewBox="0 0 24 24">
          <path d="M12 3l3.1 6.3 7 1-5.1 4.7 1.5 7-6.5-3.6-6.5 3.6 1.5-7-5.1-4.7 7-1z"></path>
        </svg>
      </div>
    </div>

    <!-- Email 6 -->
    <div class="item">
      <div class="sender-row">
        <span>Me to Cerebra</span>
      </div>
      <div class="subject sub-dark">Business meeting with the Clients</div>
      <div class="preview-time">
        <div class="preview">We have a business meeting on August 30, 2023, s...</div>
        <div class="time">2h</div>
      </div>
      <div class="star outline">
        <svg viewBox="0 0 24 24">
          <path d="M12 3l3.1 6.3 7 1-5.1 4.7 1.5 7-6.5-3.6-6.5 3.6 1.5-7-5.1-4.7 7-1z"></path>
        </svg>
      </div>
    </div>

    <!-- Email 7 -->
    <div class="item">
      <div class="sender-row">
        <span>Google</span>
      </div>
      <div class="subject sub-dark">Security alert</div>
      <div class="preview-time">
        <div class="preview">Newton by CloudMagic was granted access to your...</div>
        <div class="time">4h</div>
      </div>
      <div class="star outline">
        <svg viewBox="0 0 24 24">
          <path d="M12 3l3.1 6.3 7 1-5.1 4.7 1.5 7-6.5-3.6-6.5 3.6 1.5-7-5.1-4.7 7-1z"></path>
        </svg>
      </div>
    </div>

    <!-- Email 8 -->
    <div class="item">
      <div class="sender-row">
        <span>Webex</span>
      </div>
      <div class="subject">Limited Spots. Unlimited Potential.</div>
      <div class="preview-time">
        <div class="preview"></div>
        <div class="time"></div>
      </div>
      <div class="star outline">
        <svg viewBox="0 0 24 24">
          <path d="M12 3l3.1 6.3 7 1-5.1 4.7 1.5 7-6.5-3.6-6.5 3.6 1.5-7-5.1-4.7 7-1z"></path>
        </svg>
      </div>
    </div>
  </div>

  <!-- Bottom navigation -->
  <div class="bottom-nav">
    <!-- Inbox tray -->
    <div class="nav-icon">
      <svg viewBox="0 0 24 24">
        <path d="M3 5h18v10l-4 4H7l-4-4V5zm4 10h10" fill="none" stroke="#e6e6e6" stroke-width="2" stroke-linejoin="round"></path>
      </svg>
    </div>
    <!-- Star -->
    <div class="nav-icon">
      <svg viewBox="0 0 24 24">
        <path d="M12 3l3.1 6.3 7 1-5.1 4.7 1.5 7-6.5-3.6-6.5 3.6 1.5-7-5.1-4.7 7-1z" fill="none" stroke="#e6e6e6" stroke-width="2"></path>
      </svg>
    </div>
    <!-- Envelope -->
    <div class="nav-icon">
      <svg viewBox="0 0 24 24">
        <rect x="3" y="6" width="18" height="12" rx="2" ry="2" fill="none" stroke="#e6e6e6" stroke-width="2"></rect>
        <path d="M3 8l9 6 9-6" stroke="#e6e6e6" stroke-width="2" fill="none"></path>
      </svg>
    </div>
    <!-- Feed/Waves -->
    <div class="nav-icon">
      <svg viewBox="0 0 24 24">
        <path d="M3 16c3-3 6-3 9 0s6 3 9 0" stroke="#e6e6e6" stroke-width="2" fill="none" stroke-linecap="round"></path>
        <path d="M5 10c2-2 4-2 6 0s4 2 6 0" stroke="#e6e6e6" stroke-width="2" fill="none" stroke-linecap="round"></path>
      </svg>
    </div>
    <!-- Compose pencil -->
    <div class="nav-icon">
      <div class="circle">
        <svg viewBox="0 0 24 24">
          <path d="M4 18l1-5 9-9 5 5-9 9-6 0z" fill="none" stroke="#e6e6e6" stroke-width="2" stroke-linejoin="round"></path>
        </svg>
      </div>
    </div>
  </div>

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