File size: 8,331 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Email Compose - Dark</title>
<meta name="viewport" content="width=1080, initial-scale=1.0">
<style>
  body { margin: 0; padding: 0; background: transparent; font-family: Roboto, Arial, sans-serif; }
  #render-target {
    width: 1080px; height: 2400px;
    position: relative; overflow: hidden;
    background: #121212; color: #E9E9E9;
  }

  /* Status bar */
  .statusbar {
    height: 96px; padding: 0 32px;
    display: flex; align-items: center; justify-content: space-between;
    color: #E9E9E9; font-weight: 500; font-size: 36px;
  }
  .status-icons { display: flex; align-items: center; gap: 24px; }
  .status-icons svg { fill: none; stroke: #E9E9E9; stroke-width: 3; }

  /* App bar */
  .appbar {
    height: 140px; padding: 0 24px;
    display: flex; align-items: center; justify-content: space-between;
    border-bottom: 1px solid #1F1F1F;
  }
  .app-left { display: flex; align-items: center; gap: 24px; }
  .app-right { display: flex; align-items: center; gap: 36px; }
  .icon-btn svg { width: 48px; height: 48px; stroke: #E9E9E9; fill: none; stroke-width: 3; }

  /* Fields */
  .content { padding: 24px 32px 0 32px; }
  .field {
    display: flex; align-items: center;
    border-bottom: 1px solid #1E1E1E;
    padding: 28px 0;
    font-size: 34px;
  }
  .label {
    width: 140px; color: #B4B4B4;
  }
  .value { flex: 1; color: #E9E9E9; }
  .placeholder { color: #9AA0A6; }
  .dropdown { width: 44px; height: 44px; margin-left: 8px; }

  /* Compose area */
  .compose {
    padding: 32px 0;
    font-size: 38px; color: #B4B4B4;
  }

  /* Attachment chip */
  .attachment {
    margin-top: 20px;
    width: 940px; height: 132px;
    background: #2A2F33; border-radius: 18px;
    display: flex; align-items: center; gap: 28px;
    padding: 0 24px; border: 1px solid #3A4044;
    color: #E9E9E9;
  }
  .att-icon {
    width: 72px; height: 72px; border-radius: 12px;
    background: #E74D3C; display: flex; align-items: center; justify-content: center;
  }
  .att-text { flex: 1; }
  .att-title { font-size: 34px; }
  .att-sub { font-size: 28px; color: #B4B4B4; margin-top: 6px; }
  .att-close { width: 48px; height: 48px; }

  /* Keyboard */
  .keyboard {
    position: absolute; bottom: 72px; left: 0;
    width: 100%; height: 900px;
    background: #1A1A1A; border-top: 1px solid #222;
  }
  .kb-topbar {
    height: 96px; padding: 0 24px;
    display: flex; align-items: center; gap: 28px; color: #9AA0A6;
  }
  .kb-rows { padding: 16px 36px 24px 36px; }
  .kb-row { display: flex; justify-content: center; gap: 8px; margin-bottom: 22px; }
  .key {
    width: 92px; height: 116px; border-radius: 16px;
    background: #2C2C2C; color: #E9E9E9;
    display: flex; align-items: center; justify-content: center;
    font-size: 42px; font-weight: 500;
  }
  .key.small { width: 140px; }
  .key.wide { width: 520px; }
  .key.blue { background: #A6C8FF; color: #121212; }
  .key.icon { font-size: 38px; color: #CFCFCF; }

  /* Home indicator */
  .home-indicator {
    position: absolute; bottom: 16px; left: 50%;
    transform: translateX(-50%);
    width: 300px; height: 12px; border-radius: 8px; background: #DADADA; opacity: 0.6;
  }
</style>
</head>
<body>
<div id="render-target">

  <!-- Status bar -->
  <div class="statusbar">
    <div>8:49</div>
    <div class="status-icons">
      <!-- Wi-Fi -->
      <svg width="44" height="44" viewBox="0 0 44 44">
        <path d="M5 16c7-6 27-6 34 0"/>
        <path d="M10 22c5-4 19-4 24 0"/>
        <path d="M16 28c3-2 9-2 12 0"/>
        <circle cx="22" cy="33" r="2.8" fill="#E9E9E9" stroke="none"/>
      </svg>
      <!-- Battery -->
      <svg width="60" height="44" viewBox="0 0 60 44">
        <rect x="6" y="10" width="40" height="24" rx="4" />
        <rect x="48" y="16" width="6" height="12" rx="2" />
        <rect x="10" y="14" width="30" height="16" rx="2" fill="#E9E9E9" stroke="none"/>
      </svg>
    </div>
  </div>

  <!-- App bar -->
  <div class="appbar">
    <div class="app-left">
      <!-- Back -->
      <div class="icon-btn">
        <svg viewBox="0 0 48 48">
          <path d="M30 10 L16 24 L30 38" />
        </svg>
      </div>
    </div>
    <div class="app-right">
      <!-- Attach (paperclip) -->
      <div class="icon-btn">
        <svg viewBox="0 0 48 48">
          <path d="M18 16c0-4 5-6 8-3l12 12c3 3 1 8-3 8-2 0-3-1-4-2L19 19c-2-2-5-1-5 2 0 2 1 3 2 4l10 10" />
        </svg>
      </div>
      <!-- Send -->
      <div class="icon-btn">
        <svg viewBox="0 0 48 48">
          <path d="M8 24 L40 10 L32 24 L40 38 Z" />
        </svg>
      </div>
      <!-- More (vertical dots) -->
      <div class="icon-btn">
        <svg viewBox="0 0 48 48">
          <circle cx="24" cy="12" r="3" fill="#E9E9E9" stroke="none"></circle>
          <circle cx="24" cy="24" r="3" fill="#E9E9E9" stroke="none"></circle>
          <circle cx="24" cy="36" r="3" fill="#E9E9E9" stroke="none"></circle>
        </svg>
      </div>
    </div>
  </div>

  <!-- Content -->
  <div class="content">
    <div class="field">
      <div class="label">From</div>
      <div class="value">dbwscratch.test.id23@gmail.com</div>
    </div>
    <div class="field">
      <div class="label">To</div>
      <div class="value placeholder"> </div>
      <!-- dropdown chevron -->
      <svg class="dropdown" viewBox="0 0 24 24">
        <path d="M6 9 L12 15 L18 9" stroke="#E9E9E9" stroke-width="2.5" fill="none" />
      </svg>
    </div>
    <div class="field">
      <div class="label">Subject</div>
      <div class="value placeholder"> </div>
    </div>

    <div class="compose">Compose email</div>

    <!-- Attachment chip -->
    <div class="attachment">
      <div class="att-icon">
        <svg width="44" height="44" viewBox="0 0 44 44">
          <path d="M14 14 v12 a8 8 0 0 0 16 0 v-12" stroke="#121212" stroke-width="3.5" fill="none" />
          <rect x="18" y="10" width="8" height="6" rx="2" fill="#121212" stroke="none"/>
        </svg>
      </div>
      <div class="att-text">
        <div class="att-title">Birthday Song .m4a</div>
        <div class="att-sub">346 KB</div>
      </div>
      <svg class="att-close" viewBox="0 0 48 48">
        <path d="M12 12 L36 36 M36 12 L12 36" stroke="#CFCFCF" stroke-width="3.5" />
      </svg>
    </div>
  </div>

  <!-- Keyboard -->
  <div class="keyboard">
    <div class="kb-topbar">
      <div class="key icon" style="width:72px;height:72px;border-radius:12px;">⌨️</div>
      <div class="key icon" style="width:72px;height:72px;border-radius:12px;">🙂</div>
      <div style="color:#6F6F6F; font-size:34px;">GIF</div>
      <div class="key icon" style="width:72px;height:72px;border-radius:12px;">⚙️</div>
      <div class="key icon" style="width:72px;height:72px;border-radius:12px;">G↔︎</div>
      <div class="key icon" style="width:72px;height:72px;border-radius:12px;">🎨</div>
      <div class="key icon" style="margin-left:auto;width:72px;height:72px;border-radius:12px;">🎤</div>
    </div>
    <div class="kb-rows">
      <div class="kb-row">
        <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="kb-row">
        <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="kb-row">
        <div class="key small"></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 small"></div>
      </div>
      <div class="kb-row" style="align-items:center;">
        <div class="key small">?123</div>
        <div class="key small">@</div>
        <div class="key small">🙂</div>
        <div class="key wide"></div>
        <div class="key small">.</div>
        <div class="key small blue"></div>
      </div>
    </div>
  </div>

  <!-- Home indicator -->
  <div class="home-indicator"></div>
</div>
</body>
</html>