File size: 8,472 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
291
292
293
294
295
296
297
298
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=1080, initial-scale=1.0">
<title>Email Compose - Dark UI</title>
<style>
  body { margin: 0; padding: 0; background: transparent; }
  #render-target {
    width: 1080px;
    height: 2400px;
    position: relative;
    overflow: hidden;
    background: #121212;
    color: #EAEAEA;
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  }

  /* Status bar */
  .status-bar {
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 96px;
    padding: 0 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #FFFFFF;
    font-size: 36px;
  }
  .status-icons {
    display: flex; align-items: center; gap: 28px;
  }
  .status-icons svg { fill: none; stroke: #FFFFFF; stroke-width: 4; }

  /* App toolbar */
  .toolbar {
    position: absolute;
    top: 96px; left: 0; right: 0;
    height: 128px;
    padding: 0 20px;
    border-bottom: 1px solid #2A2A2A;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .toolbar-left, .toolbar-right {
    display: flex; align-items: center; gap: 36px;
  }
  .icon-btn svg { width: 48px; height: 48px; stroke: #EAEAEA; fill: none; stroke-width: 4; }
  .kebab svg { stroke: none; fill: #EAEAEA; }

  /* Form rows */
  .form {
    position: absolute;
    top: 224px; left: 0; right: 0;
    padding: 0 32px;
  }
  .row {
    height: 120px;
    border-bottom: 1px solid #2A2A2A;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .row .labels {
    display: flex; align-items: baseline; gap: 18px;
    font-size: 40px;
  }
  .row .label {
    color: #9AA0A6;
    font-size: 38px;
  }
  .row .value {
    color: #EAEAEA;
    font-size: 40px;
  }
  .dropdown svg { width: 36px; height: 36px; fill: none; stroke: #9AA0A6; stroke-width: 4; }

  /* Suggestion item */
  .suggestion {
    height: 120px;
    display: flex;
    align-items: center;
    gap: 28px;
    padding-left: 32px;
    color: #EAEAEA;
    font-size: 40px;
  }
  .suggestion .avatar {
    width: 72px; height: 72px;
    background: #E0E0E0; border: 1px solid #BDBDBD;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: #757575; font-size: 20px;
  }
  .suggestion .email { color: #9AA0A6; font-size: 36px; }

  /* Empty compose area between form and keyboard */
  .body-space {
    position: absolute;
    top: 584px; left: 0; right: 0;
    bottom: 970px;
  }

  /* Keyboard */
  .keyboard {
    position: absolute;
    left: 0; right: 0; bottom: 90px;
    height: 880px;
    background: #1A1A1A;
    border-top: 1px solid #2A2A2A;
  }
  .kb-topbar {
    height: 120px;
    display: flex; align-items: center;
    gap: 28px;
    padding: 0 26px;
  }
  .kb-top-icon {
    width: 88px; height: 88px;
    background: #2A2A2A; border: 1px solid #3A3A3A;
    border-radius: 18px;
    display: flex; align-items: center; justify-content: center;
    color: #BDBDBD; font-size: 30px;
  }

  .keys {
    padding: 10px 26px;
  }
  .row-keys {
    display: flex; gap: 14px; margin-bottom: 22px;
  }
  .key {
    flex: 1;
    height: 120px;
    background: #2B2B2B;
    border: 1px solid #3F3F3F;
    border-radius: 22px;
    display: flex; align-items: center; justify-content: center;
    color: #E0E0E0; font-size: 44px;
  }
  .key.small { flex: 0 0 90px; }
  .key.medium { flex: 0 0 150px; }
  .key.wide { flex: 0 0 220px; }
  .key.space { flex: 1 0 540px; }

  .kb-bottom {
    margin-top: 16px;
    padding: 0 26px;
  }

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

  <!-- Status bar -->
  <div class="status-bar">
    <div class="time">8:50</div>
    <div class="status-icons">
      <!-- Wi-Fi -->
      <svg width="52" height="52" viewBox="0 0 24 24" aria-label="wifi">
        <path d="M2 8c5.5-4.7 14.5-4.7 20 0"></path>
        <path d="M5 11c4-3 10-3 14 0"></path>
        <path d="M8 14c2.5-1.9 5.5-1.9 8 0"></path>
        <circle cx="12" cy="18" r="1.6" fill="#FFFFFF"></circle>
      </svg>
      <!-- Battery -->
      <svg width="64" height="52" viewBox="0 0 32 24" aria-label="battery">
        <rect x="2" y="5" width="24" height="14" rx="2"></rect>
        <rect x="27" y="9" width="3" height="6" rx="1"></rect>
        <rect x="4" y="7" width="20" height="10" fill="#FFFFFF"></rect>
      </svg>
    </div>
  </div>

  <!-- App toolbar -->
  <div class="toolbar">
    <div class="toolbar-left">
      <!-- Back arrow -->
      <div class="icon-btn" aria-label="Back">
        <svg viewBox="0 0 24 24">
          <path d="M15 19l-7-7 7-7"></path>
        </svg>
      </div>
    </div>
    <div class="toolbar-right">
      <!-- Attach (paperclip) -->
      <div class="icon-btn" aria-label="Attach">
        <svg viewBox="0 0 24 24">
          <path d="M7 12l6.5-6.5a3.5 3.5 0 015 5L10 19a5 5 0 01-7-7l8-8"></path>
        </svg>
      </div>
      <!-- Send (paper plane) -->
      <div class="icon-btn" aria-label="Send">
        <svg viewBox="0 0 24 24">
          <path d="M3 11l18-8-8 18-2-7-7-3z"></path>
        </svg>
      </div>
      <!-- More (kebab) -->
      <div class="icon-btn kebab" aria-label="More">
        <svg viewBox="0 0 24 24">
          <circle cx="12" cy="5" r="2.5"></circle>
          <circle cx="12" cy="12" r="2.5"></circle>
          <circle cx="12" cy="19" r="2.5"></circle>
        </svg>
      </div>
    </div>
  </div>

  <!-- Form area -->
  <div class="form">
    <div class="row">
      <div class="labels">
        <span class="label">From</span>
        <span class="value">dbwscratch.test.id23@gmail.com</span>
      </div>
    </div>
    <div class="row">
      <div class="labels">
        <span class="label">To</span>
        <span class="value">giorgio.rossi196503@gmail.com</span>
      </div>
      <div class="dropdown" aria-label="Recipients dropdown">
        <svg viewBox="0 0 24 24">
          <path d="M6 9l6 6 6-6"></path>
        </svg>
      </div>
    </div>
    <div class="suggestion">
      <div class="avatar">[IMG: Contact avatar]</div>
      <div>
        <div>Add recipient</div>
        <div class="email">giorgio.rossi196503@gmail.com</div>
      </div>
    </div>
  </div>

  <!-- Empty message body area -->
  <div class="body-space"></div>

  <!-- Keyboard -->
  <div class="keyboard">
    <div class="kb-topbar">
      <div class="kb-top-icon">â–¦</div>
      <div class="kb-top-icon">😊</div>
      <div class="kb-top-icon">GIF</div>
      <div class="kb-top-icon">âš™</div>
      <div class="kb-top-icon">G↔</div>
      <div class="kb-top-icon">🎨</div>
      <div class="kb-top-icon">🎤</div>
    </div>
    <div class="keys">
      <div class="row-keys">
        <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="row-keys">
        <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="row-keys">
        <div class="key wide">⇧</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 wide">⌫</div>
      </div>
      <div class="kb-bottom">
        <div class="row-keys">
          <div class="key wide">?123</div>
          <div class="key medium">@</div>
          <div class="key medium">😊</div>
          <div class="key space">space</div>
          <div class="key medium">.</div>
          <div class="key wide">
            <svg width="48" height="48" viewBox="0 0 24 24" aria-label="enter">
              <path d="M4 6v6a4 4 0 004 4h7"></path>
              <path d="M15 13l4 3-4 3" ></path>
            </svg>
          </div>
        </div>
      </div>
    </div>
  </div>

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