File size: 8,707 Bytes
0e1717f
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=1080, initial-scale=1.0">
<title>UI Render</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: #121212; color: #EDEDED;
  }

  /* Status bar */
  .status-bar {
    position: absolute; top: 0; left: 0; right: 0;
    height: 110px; padding: 0 40px;
    display: flex; align-items: center; justify-content: space-between;
    color: #EDEDED; font-weight: 600; font-size: 40px;
  }
  .status-right { display: flex; align-items: center; gap: 22px; font-size: 32px; color: #BFBFBF; }
  .status-icon { width: 30px; height: 30px; border-radius: 50%; background: #3A3A3A; }

  /* Search header */
  .search-header {
    position: absolute; top: 120px; left: 30px; right: 30px;
    display: flex; align-items: center; gap: 24px;
  }
  .back-btn {
    width: 90px; height: 90px; display: flex; align-items: center; justify-content: center;
    border-radius: 45px; background: transparent;
  }
  .back-btn svg { width: 44px; height: 44px; }
  .search-pill {
    flex: 1; height: 110px; border-radius: 55px;
    background: #2E3A2C; /* olive/greenish dark */
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 34px; color: #D8E0D0; font-size: 44px; font-weight: 600;
  }
  .search-text { letter-spacing: 0.2px; }
  .clear-btn svg { width: 36px; height: 36px; }

  /* Filter chips */
  .chips {
    position: absolute; top: 260px; left: 30px; right: 30px;
    display: flex; gap: 22px;
  }
  .chip {
    height: 88px; padding: 0 36px; border-radius: 44px;
    border: 1px solid #3A3A3A; background: #1B1B1B;
    display: inline-flex; align-items: center; gap: 18px;
    color: #CFCFCF; font-size: 34px; font-weight: 600;
  }
  .chip svg { width: 22px; height: 22px; fill: #8A8A8A; }

  /* Section heading */
  .section-label {
    position: absolute; top: 380px; left: 40px;
    font-size: 36px; color: #9E9E9E;
  }

  /* Email list */
  .email {
    position: relative;
    width: 1000px; margin-left: 40px;
    display: grid; grid-template-columns: 120px 1fr 80px;
    column-gap: 30px; align-items: center;
    padding: 32px 0; border-bottom: 1px solid transparent;
  }
  .email + .email { margin-top: 22px; }
  .avatar {
    width: 100px; height: 100px; border-radius: 50%;
    background: #E0E0E0; border: 1px solid #BDBDBD;
    display: flex; align-items: center; justify-content: center;
    color: #757575; font-size: 22px; text-align: center;
  }
  .email-content { display: grid; grid-template-rows: auto auto auto; row-gap: 10px; }
  .title-row {
    display: flex; align-items: baseline; justify-content: space-between;
  }
  .email-title {
    font-size: 42px; font-weight: 800; color: #F5F5F5;
  }
  .highlight {
    background: #FFE08A; color: #2B2B2B; padding: 6px 8px; border-radius: 6px; margin-right: 6px;
  }
  .time { font-size: 34px; color: #CFCFCF; }
  .subject { font-size: 36px; color: #EDEDED; font-weight: 700; }
  .snippet {
    font-size: 32px; color: #BDBDBD;
    display: flex; align-items: center; gap: 16px;
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  }
  .label-pill {
    font-size: 28px; color: #CFCFCF;
    background: #222; border: 1px solid #444; border-radius: 16px;
    padding: 6px 14px;
  }
  .star-btn {
    display: flex; align-items: center; justify-content: center;
  }
  .star-btn svg { width: 46px; height: 46px; stroke: #CFCFCF; fill: none; stroke-width: 2.5; }

  /* Bottom bar */
  .bottom-bar {
    position: absolute; bottom: 120px; left: 0; right: 0;
    height: 160px; padding: 0 80px;
    display: flex; align-items: center; justify-content: space-between;
    color: #EDEDED;
  }
  .nav-pill {
    width: 260px; height: 100px; background: #314433; border-radius: 50px;
    display: flex; align-items: center; justify-content: center; position: relative;
  }
  .badge {
    position: absolute; top: -10px; right: 40px;
    background: #E6A1A1; color: #1B1B1B; font-weight: 700;
    width: 58px; height: 58px; border-radius: 29px;
    display: flex; align-items: center; justify-content: center; font-size: 34px; border: 2px solid #D38D8D;
  }
  .nav-icon svg { width: 42px; height: 42px; }
  .meet-icon { width: 90px; height: 90px; display: flex; align-items: center; justify-content: center; }

  /* Gesture bar */
  .gesture {
    position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
    width: 360px; height: 16px; background: #FFFFFF; border-radius: 8px; opacity: 0.85;
  }
</style>
</head>
<body>
<div id="render-target">

  <!-- Status bar -->
  <div class="status-bar">
    <div class="time">11:25</div>
    <div class="status-right">
      <div class="status-icon"></div>
      <div class="status-icon"></div>
      <div>100%</div>
      <svg width="48" height="28" viewBox="0 0 48 28">
        <rect x="2" y="4" width="38" height="20" rx="4" fill="none" stroke="#CFCFCF" stroke-width="2"/>
        <rect x="4" y="6" width="32" height="16" rx="3" fill="#CFCFCF"/>
        <rect x="42" y="10" width="4" height="8" rx="2" fill="#CFCFCF"/>
      </svg>
    </div>
  </div>

  <!-- Search header -->
  <div class="search-header">
    <div class="back-btn">
      <svg viewBox="0 0 24 24">
        <path d="M15 5 L6 12 L15 19" stroke="#EDEDED" stroke-width="2.5" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
      </svg>
    </div>
    <div class="search-pill">
      <span class="search-text">Netalie Larson</span>
      <div class="clear-btn">
        <svg viewBox="0 0 24 24">
          <path d="M6 6 L18 18 M18 6 L6 18" stroke="#D8E0D0" stroke-width="2.5" stroke-linecap="round"/>
        </svg>
      </div>
    </div>
  </div>

  <!-- Filter chips -->
  <div class="chips">
    <div class="chip">
      <span>Labels</span>
      <svg viewBox="0 0 24 24"><path d="M6 9 L12 15 L18 9" /></svg>
    </div>
    <div class="chip">
      <span>From</span>
      <svg viewBox="0 0 24 24"><path d="M6 9 L12 15 L18 9" /></svg>
    </div>
    <div class="chip">
      <span>To</span>
      <svg viewBox="0 0 24 24"><path d="M6 9 L12 15 L18 9" /></svg>
    </div>
    <div class="chip">
      <span>Attachment</span>
      <svg viewBox="0 0 24 24"><path d="M6 9 L12 15 L18 9" /></svg>
    </div>
  </div>

  <!-- Section -->
  <div class="section-label">Results in mail</div>

  <!-- Email 1 -->
  <div class="email" style="top: 440px;">
    <div class="avatar">[IMG: Avatar]</div>
    <div class="email-content">
      <div class="title-row">
        <div class="email-title">
          <span class="highlight">Natalie</span><span class="highlight">Larson</span>
        </div>
        <div class="time">10:45 PM</div>
      </div>
      <div class="subject">Happiness</div>
      <div class="snippet">Hi, Karin How are you ? <span class="label-pill">Inbox</span></div>
    </div>
    <div class="star-btn">
      <svg viewBox="0 0 24 24">
        <path d="M12 2 L14.8 8.8 L22 9.2 L16.7 13.7 L18.6 21 L12 17.2 L5.4 21 L7.3 13.7 L2 9.2 L9.2 8.8 Z"/>
      </svg>
    </div>
  </div>

  <!-- Email 2 -->
  <div class="email" style="top: 480px;">
    <div class="avatar">[IMG: Avatar]</div>
    <div class="email-content">
      <div class="title-row">
        <div class="email-title">
          <span class="highlight">Natalie</span><span class="highlight">Larson</span>
        </div>
        <div class="time">5:38 PM</div>
      </div>
      <div class="subject">(no subject)</div>
      <div class="snippet">, Karin <span class="highlight">Natalie</span> this side , I want to sha... <span class="label-pill">Inbox</span></div>
    </div>
    <div class="star-btn">
      <svg viewBox="0 0 24 24">
        <path d="M12 2 L14.8 8.8 L22 9.2 L16.7 13.7 L18.6 21 L12 17.2 L5.4 21 L7.3 13.7 L2 9.2 L9.2 8.8 Z"/>
      </svg>
    </div>
  </div>

  <!-- Bottom navigation -->
  <div class="bottom-bar">
    <div class="nav-pill">
      <div class="nav-icon">
        <svg viewBox="0 0 24 24">
          <rect x="3" y="5" width="18" height="14" rx="2" fill="none" stroke="#DDE7D3" stroke-width="2"/>
          <path d="M4 6 L12 12 L20 6" stroke="#DDE7D3" stroke-width="2" fill="none"/>
        </svg>
      </div>
      <div class="badge">8</div>
    </div>
    <div class="meet-icon">
      <svg viewBox="0 0 24 24">
        <rect x="3" y="6" width="14" height="12" rx="2" fill="none" stroke="#CFCFCF" stroke-width="2"/>
        <polygon points="17,9 22,12 17,15" fill="#CFCFCF"/>
      </svg>
    </div>
  </div>

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

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