File size: 8,728 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=1080, initial-scale=1.0">
<title>Compose - Dark UI</title>
<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: #ECECEC;
  }

  /* Status bar */
  .status-bar {
    height: 90px;
    padding: 0 32px;
    display: flex; align-items: center; justify-content: space-between;
    color: #FFFFFF; font-size: 28px;
  }
  .status-left { display: flex; align-items: center; gap: 16px; }
  .status-right { display: flex; align-items: center; gap: 28px; }
  .status-icon svg { width: 36px; height: 36px; fill: #FFFFFF; }

  /* App bar */
  .app-bar {
    height: 150px;
    border-bottom: 1px solid #2A2A2A;
    display: flex; align-items: center;
    padding: 0 24px;
  }
  .app-left { display: flex; align-items: center; gap: 24px; }
  .app-title { font-size: 44px; font-weight: 500; color: #EDEDED; }
  .app-right { margin-left: auto; display: flex; align-items: center; gap: 28px; }
  .app-icon svg { width: 44px; height: 44px; fill: #EDEDED; }

  /* Content area */
  .content { padding: 24px; }
  .field {
    padding: 18px 0;
    border-bottom: 1px solid #2A2A2A;
  }
  .label { font-size: 26px; color: #9E9E9E; margin-bottom: 8px; }
  .value { font-size: 32px; color: #EDEDED; }
  .to-row { display: flex; align-items: center; justify-content: space-between; }
  .caret svg { width: 30px; height: 30px; fill: #BDBDBD; }

  /* Suggestion card */
  .suggestion {
    display: flex; align-items: center;
    gap: 24px; padding: 26px 0;
    border-bottom: 1px solid #2A2A2A;
  }
  .avatar {
    width: 96px; height: 96px; border-radius: 50%;
    background: #E0E0E0; border: 1px solid #BDBDBD;
    display: flex; align-items: center; justify-content: center;
    color: #757575; font-size: 22px;
  }
  .s-text .name { font-size: 34px; color: #EDEDED; }
  .s-text .email { font-size: 26px; color: #A9A9A9; margin-top: 6px; }

  /* Spacer to mimic large empty area above keyboard */
  .spacer { height: 860px; }

  /* Keyboard */
  .keyboard {
    position: absolute; left: 0; bottom: 0;
    width: 100%; height: 930px;
    background: #1A1A1A; border-top: 1px solid #2A2A2A;
    box-sizing: border-box; padding: 24px;
  }
  .kb-tools {
    height: 110px; display: flex; align-items: center;
    justify-content: space-between; padding: 0 12px; color: #CFCFCF;
  }
  .tool { display: flex; align-items: center; gap: 10px; font-size: 26px; }
  .tool-icon {
    width: 48px; height: 48px; border-radius: 10px;
    background: #2C2C2C; display: flex; align-items: center; justify-content: center;
  }
  .tool-icon svg { width: 28px; height: 28px; fill: #CFCFCF; }

  .kb-row {
    margin-top: 16px;
    display: flex; justify-content: center; gap: 12px;
  }
  .key {
    width: 92px; height: 120px; border-radius: 18px;
    background: #2C2C2C; color: #E5E5E5; font-size: 34px;
    display: flex; align-items: center; justify-content: center;
  }
  .key.wide { width: 180px; }
  .space { flex: 1; height: 120px; background: #2C2C2C; border-radius: 18px; }
  .key.alt { background: #2F3A4B; color: #EAF2FF; } /* subtle bluish for special keys */
  .enter { width: 160px; height: 120px; border-radius: 28px; background: #5673FF; color: #FFFFFF; font-size: 34px; }
  .bottom-bar {
    position: absolute; left: 0; bottom: 22px;
    width: 100%; display: flex; justify-content: center;
  }
  .gesture {
    width: 320px; height: 12px; border-radius: 12px; background: #EDEDED; opacity: 0.85;
  }
</style>
</head>
<body>
<div id="render-target">

  <!-- Status bar -->
  <div class="status-bar">
    <div class="status-left">
      <div style="font-weight: 500;">12:27</div>
    </div>
    <div class="status-right">
      <div class="status-icon" title="Signal">
        <svg viewBox="0 0 24 24"><path d="M2 20h2v-3H2v3zm4 0h2v-6H6v6zm4 0h2v-9h-2v9zm4 0h2v-12h-2v12zm4 0h2V4h-2v16z"/></svg>
      </div>
      <div class="status-icon" title="Wi‑Fi">
        <svg viewBox="0 0 24 24"><path d="M12 18.5l-1.8-1.8a3 3 0 014 0L12 18.5zM4.5 11.5a12 12 0 0115 0l-1.8 1.8a9 9 0 00-11.4 0L4.5 11.5zm2.9-3a16 16 0 0119.2 0l-1.8 1.8a13 13 0 00-15.6 0L7.4 8.5z" /></svg>
      </div>
      <div class="status-icon" title="Battery">
        <svg viewBox="0 0 24 24"><path d="M20 7h1v10h-1v2H4V5h16v2zm-2 0H6v10h12V7z"/></svg>
      </div>
    </div>
  </div>

  <!-- App bar -->
  <div class="app-bar">
    <div class="app-left">
      <div class="app-icon" title="Back">
        <svg viewBox="0 0 24 24"><path d="M15.5 5l-7 7 7 7 1.5-1.5L11.5 12l5.5-5.5L15.5 5z"/></svg>
      </div>
      <div class="app-title">Compose</div>
    </div>
    <div class="app-right">
      <div class="app-icon" title="Attach">
        <svg viewBox="0 0 24 24"><path d="M7 12a5 5 0 019.6-2.1l-6.1 6.1a3 3 0 11-4.2-4.2l7.8-7.8 1.4 1.4-7.8 7.8a1 1 0 101.4 1.4l6.1-6.1c1.6 2.4.8 5.7-1.6 7.3-2.4 1.6-5.7.8-7.3-1.6A5 5 0 017 12z"/></svg>
      </div>
      <div class="app-icon" title="Send">
        <svg viewBox="0 0 24 24"><path d="M3 12l18-8-5 8 5 8-18-8zm10.5-.5l-6.7 3.1 1.9-3.1-1.9-3.1 6.7 3.1z"/></svg>
      </div>
      <div class="app-icon" title="More">
        <svg viewBox="0 0 24 24"><path d="M12 6a2 2 0 110-4 2 2 0 010 4zm0 8a2 2 0 110-4 2 2 0 010 4zm0 8a2 2 0 110-4 2 2 0 010 4z"/></svg>
      </div>
    </div>
  </div>

  <!-- Content -->
  <div class="content">
    <div class="field">
      <div class="label">From</div>
      <div class="value">dbwscratch.test.id8@gmail.com</div>
    </div>

    <div class="field">
      <div class="label">To</div>
      <div class="to-row">
        <div class="value">akashgahlot@google.com</div>
        <div class="caret">
          <svg viewBox="0 0 24 24"><path d="M7 10l5 5 5-5H7z"/></svg>
        </div>
      </div>
    </div>

    <div class="suggestion">
      <div class="avatar">[IMG: Avatar]</div>
      <div class="s-text">
        <div class="name">akashgahlot@google.com</div>
        <div class="email">akashgahlot@google.com</div>
      </div>
    </div>

    <div class="spacer"></div>
  </div>

  <!-- Keyboard -->
  <div class="keyboard">
    <div class="kb-tools">
      <div class="tool">
        <div class="tool-icon">
          <svg viewBox="0 0 24 24"><path d="M3 3h8v8H3V3zm10 0h8v8h-8V3zM3 13h8v8H3v-8zm10 0h8v8h-8v-8z"/></svg>
        </div>
      </div>
      <div class="tool">
        <div class="tool-icon">
          <svg viewBox="0 0 24 24"><path d="M12 2a5 5 0 00-5 5c0 3.5 5 9 5 9s5-5.5 5-9a5 5 0 00-5-5zm0 7a2 2 0 110-4 2 2 0 010 4z"/></svg>
        </div>
        <span>GIF</span>
      </div>
      <div class="tool">
        <div class="tool-icon">
          <svg viewBox="0 0 24 24"><path d="M12 2l3 7h7l-5.5 4.5L18 21l-6-4-6 4 1.5-7.5L2 9h7l3-7z"/></svg>
        </div>
      </div>
      <div class="tool">
        <div class="tool-icon">
          <svg viewBox="0 0 24 24"><path d="M12 3a9 9 0 100 18 9 9 0 000-18zm0 16a7 7 0 110-14 7 7 0 010 14z"/></svg>
        </div>
      </div>
      <div class="tool">
        <div class="tool-icon">
          <svg viewBox="0 0 24 24"><path d="M4 4l16 8-16 8V4zm3 4.8v6.4L14.6 12 7 8.8z"/></svg>
        </div>
      </div>
    </div>

    <!-- Row 1 -->
    <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>
    <!-- Row 2 -->
    <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>
    <!-- Row 3 -->
    <div class="kb-row">
      <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>
    <!-- Row 4 -->
    <div class="kb-row">
      <div class="key alt">?123</div>
      <div class="key">@</div>
      <div class="key"></div>
      <div class="space"></div>
      <div class="key">.</div>
      <div class="enter">↩︎</div>
    </div>

    <div class="bottom-bar">
      <div class="gesture"></div>
    </div>
  </div>

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