File size: 6,803 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Mobile UI - Gmail Compose</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: #ffffff;
  }

  /* Status bar */
  .status-bar {
    height: 96px;
    padding: 0 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #212121;
    font-size: 34px;
  }
  .status-left { display: flex; align-items: center; gap: 16px; }
  .status-right { display: flex; align-items: center; gap: 22px; }
  .icon {
    width: 40px; height: 40px;
  }

  /* Toolbar */
  .toolbar {
    height: 170px;
    display: flex;
    align-items: center;
    padding: 0 24px;
    border-bottom: 1px solid #e0e0e0;
  }
  .toolbar-left { display: flex; align-items: center; gap: 20px; }
  .toolbar-title {
    font-size: 56px;
    color: #212121;
    font-weight: 600;
    letter-spacing: 0.2px;
  }
  .toolbar-actions {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 28px;
  }
  .toolbar .icon { width: 48px; height: 48px; color: #424242; }

  /* Content */
  .content { padding: 24px 48px; }
  .row {
    display: flex;
    align-items: center;
    padding: 26px 0;
    border-bottom: 1px solid #eeeeee;
  }
  .label {
    color: #757575;
    font-size: 34px;
    min-width: 120px;
  }
  .value {
    color: #212121;
    font-size: 38px;
  }
  .chevron { margin-left: auto; width: 42px; height: 42px; color: #757575; }
  .placeholder-text {
    color: #9e9e9e;
    font-size: 42px;
    padding: 32px 0 16px 0;
  }

  /* Attachment card */
  .attachment-card {
    width: calc(100% - 96px);
    margin: 24px auto;
    border-radius: 16px;
    box-shadow: 0 2px 0 rgba(0,0,0,0.06), 0 3px 10px rgba(0,0,0,0.08);
    overflow: hidden;
    border: 1px solid #e0e0e0;
    background: #f5f7fa;
  }
  .attachment-preview {
    height: 360px;
    background: #E0E0E0;
    border-bottom: 1px solid #BDBDBD;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #757575;
    font-size: 38px;
  }
  .file-row {
    background: #e6edf3;
    padding: 22px 28px;
    display: flex;
    align-items: center;
    gap: 24px;
  }
  .thumb {
    width: 68px;
    height: 68px;
    border-radius: 8px;
    background: #d84315; /* reddish image icon tile */
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .file-info {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
  }
  .file-name {
    color: #212121;
    font-size: 36px;
  }
  .file-size {
    color: #607d8b;
    font-size: 28px;
    margin-top: 6px;
  }
  .file-action {
    margin-left: auto;
    width: 44px;
    height: 44px;
    color: #424242;
    cursor: default;
  }

  /* Bottom gesture pill (visual) */
  .gesture-pill {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    width: 360px;
    height: 12px;
    background: #8d8d8d;
    border-radius: 12px;
    opacity: 0.7;
  }
</style>
</head>
<body>
<div id="render-target">

  <!-- Status bar -->
  <div class="status-bar">
    <div class="status-left">
      <div>1:15</div>
      <!-- simple cloud icon -->
      <svg class="icon" viewBox="0 0 24 24">
        <path d="M6 15h10a4 4 0 0 0 0-8 5 5 0 0 0-9-2 4 4 0 0 0-1 8z" fill="#757575"/>
      </svg>
    </div>
    <div class="status-right">
      <!-- signal icon -->
      <svg class="icon" viewBox="0 0 24 24">
        <path d="M3 17h2v2H3zm4-4h2v6H7zm4-3h2v9h-2zm4-4h2v13h-2z" fill="#616161"/>
      </svg>
      <!-- wifi icon -->
      <svg class="icon" viewBox="0 0 24 24">
        <path d="M12 18l-2 2 2 2 2-2-2-2zm-6-6l2 2a6 6 0 0 1 8 0l2-2a8 8 0 0 0-12 0zm-4-4l2 2a12 12 0 0 1 16 0l2-2a14 14 0 0 0-20 0z" fill="#616161"/>
      </svg>
      <!-- battery icon -->
      <svg class="icon" viewBox="0 0 24 24">
        <rect x="2" y="6" width="18" height="12" rx="2" ry="2" fill="none" stroke="#616161" stroke-width="2"/>
        <rect x="4" y="8" width="12" height="8" fill="#616161"/>
        <rect x="20" y="10" width="2" height="6" fill="#616161"/>
      </svg>
    </div>
  </div>

  <!-- Toolbar -->
  <div class="toolbar">
    <div class="toolbar-left">
      <!-- back arrow -->
      <svg class="icon" viewBox="0 0 24 24">
        <path d="M15 6l-6 6 6 6" fill="none" stroke="#424242" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
      </svg>
      <div class="toolbar-title">Compose</div>
    </div>
    <div class="toolbar-actions">
      <!-- paperclip -->
      <svg class="icon" viewBox="0 0 24 24">
        <path d="M7 13l7-7a4 4 0 0 1 6 6l-8 8a6 6 0 0 1-9-9l7-7" fill="none" stroke="#424242" stroke-width="2" stroke-linecap="round"/>
      </svg>
      <!-- send -->
      <svg class="icon" viewBox="0 0 24 24">
        <path d="M4 12l16-7-5 7 5 7-16-7z" fill="#424242"/>
      </svg>
      <!-- more menu -->
      <svg class="icon" viewBox="0 0 24 24">
        <circle cx="12" cy="5" r="2" fill="#424242"/>
        <circle cx="12" cy="12" r="2" fill="#424242"/>
        <circle cx="12" cy="19" r="2" fill="#424242"/>
      </svg>
    </div>
  </div>

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

    <div class="row">
      <div class="label">To</div>
      <div class="value" style="color:#9e9e9e;">|</div>
      <!-- dropdown chevron -->
      <svg class="chevron" viewBox="0 0 24 24">
        <path d="M6 9l6 6 6-6" fill="none" stroke="#757575" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
      </svg>
    </div>

    <div class="row">
      <div class="label">Subject</div>
      <div class="value" style="color:#9e9e9e;">|</div>
    </div>

    <div class="placeholder-text">Compose email</div>

    <!-- Attachment card -->
    <div class="attachment-card">
      <div class="attachment-preview">[IMG: 1h Active time graphic]</div>
      <div class="file-row">
        <div class="thumb">
          <svg viewBox="0 0 24 24" width="28" height="28">
            <rect x="3" y="5" width="18" height="14" rx="2" fill="#ffffff"/>
            <path d="M6 15l3-3 4 4 4-6 3 5H6z" fill="#c62828"/>
          </svg>
        </div>
        <div class="file-info">
          <div class="file-name">temp_shared_bi...419875146.png</div>
          <div class="file-size">24 KB</div>
        </div>
        <svg class="file-action" viewBox="0 0 24 24">
          <path d="M6 6l12 12M18 6L6 18" stroke="#424242" stroke-width="2" stroke-linecap="round"/>
        </svg>
      </div>
    </div>
  </div>

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