File size: 9,411 Bytes
fa881a6
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Forward Message UI</title>
<style>
  body { margin: 0; padding: 0; background: transparent; }
  #render-target {
    width: 1080px; height: 2400px;
    position: relative; overflow: hidden;
    background: #FFFFFF; color: #1a1a1a;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  }
  /* Status bar */
  .status-bar {
    height: 110px;
    padding: 0 40px;
    display: flex; align-items: center; justify-content: space-between;
    color: #2b2b2b;
  }
  .status-left { font-size: 40px; font-weight: 600; }
  .status-right { display: flex; gap: 26px; align-items: center; }
  .icon { width: 42px; height: 42px; }
  /* App bar */
  .appbar {
    height: 130px;
    padding: 0 30px;
    display: flex; align-items: center; gap: 22px;
    border-bottom: 1px solid #EAEAEA;
  }
  .back-btn svg { width: 64px; height: 64px; }
  .title { font-size: 52px; font-weight: 700; }
  /* Message forward box */
  .forward-box {
    margin: 26px 30px 18px;
    background: #EAF1F8;
    border-radius: 28px;
    padding: 28px;
  }
  .message-card {
    background: #fff;
    border-radius: 22px;
    padding: 34px 34px;
    border-left: 10px solid #1976D2;
    box-shadow: 0 1px 0 rgba(0,0,0,0.06) inset;
    position: relative;
  }
  .message-card .reply-icon {
    position: absolute; left: 40px; top: 20px;
    width: 40px; height: 40px;
  }
  .message-text { font-size: 42px; margin-top: 22px; color: #222; }
  .optional-input {
    margin-top: 26px; font-size: 36px; color: #8a8a8a;
  }
  /* Search */
  .search-field {
    margin: 26px 30px;
    height: 96px; border-radius: 24px;
    background: #F1F1F1;
    display: flex; align-items: center;
    padding: 0 26px; color: #7a7a7a; font-size: 38px;
  }
  .search-field svg { width: 44px; height: 44px; margin-right: 16px; }
  /* Section headers */
  .section-title {
    margin: 8px 30px 12px;
    color: #808080; font-size: 36px; font-weight: 600;
  }
  /* List */
  .list { margin: 0 30px; }
  .list-item {
    display: flex; align-items: center;
    height: 150px;
  }
  .avatar {
    width: 100px; height: 100px;
    background: #E0E0E0; border: 1px solid #BDBDBD;
    display: flex; justify-content: center; align-items: center;
    color: #757575; font-size: 28px;
    border-radius: 20px; /* default rounded-square */
  }
  .circle { border-radius: 50%; }
  .item-info { flex: 1; margin-left: 26px; }
  .name {
    font-size: 42px; font-weight: 700; display: flex; align-items: center; gap: 14px;
  }
  .sub { font-size: 32px; color: #8a8a8a; }
  .verified {
    width: 40px; height: 40px;
    display: inline-flex; align-items: center; justify-content: center;
  }
  .presence {
    position: absolute;
    width: 18px; height: 18px; border-radius: 50%;
    border: 3px solid #fff; background: #37d159;
    right: -6px; bottom: -6px;
  }
  .send-btn {
    width: 210px; height: 82px; border-radius: 42px;
    background: linear-gradient(135deg, #32B6F2, #0E5EC5);
    color: #fff; font-weight: 700; font-size: 36px;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 6px 12px rgba(14,94,197,0.25);
  }
  .divider {
    height: 1px; background: #E5E5E5;
    margin-left: 150px;
  }
  /* Bottom */
  .bottom-area {
    position: absolute; left: 0; right: 0;
    bottom: 0; padding-bottom: 120px;
  }
  .done-wrap { display: flex; justify-content: center; }
  .done-btn {
    width: 280px; height: 94px; border-radius: 48px;
    background: linear-gradient(135deg, #BFE2FF, #9CC4E8);
    color: #4f6e8d; font-size: 40px; font-weight: 800;
    display: flex; align-items: center; justify-content: center;
  }
  .home-indicator {
    position: absolute; left: 50%; transform: translateX(-50%);
    bottom: 38px; width: 360px; height: 14px; background: #9A9A9A; border-radius: 7px;
    opacity: .6;
  }
</style>
</head>
<body>
<div id="render-target">

  <!-- Top status bar -->
  <div class="status-bar">
    <div class="status-left">3:13</div>
    <div class="status-right">
      <!-- simple person/steps icon -->
      <svg class="icon" viewBox="0 0 48 48">
        <circle cx="24" cy="14" r="8" fill="#707070"/>
        <path d="M8 44c3-8 10-12 16-12s13 4 16 12" fill="none" stroke="#707070" stroke-width="4" stroke-linecap="round"/>
      </svg>
      <!-- wifi -->
      <svg class="icon" viewBox="0 0 48 48">
        <path d="M6 18c10-10 26-10 36 0" fill="none" stroke="#707070" stroke-width="4" stroke-linecap="round"/>
        <path d="M12 24c7-7 17-7 24 0" fill="none" stroke="#707070" stroke-width="4" stroke-linecap="round"/>
        <path d="M18 30c4-4 8-4 12 0" fill="none" stroke="#707070" stroke-width="4" stroke-linecap="round"/>
        <circle cx="24" cy="36" r="3.5" fill="#707070"/>
      </svg>
      <!-- battery -->
      <svg class="icon" viewBox="0 0 48 48">
        <rect x="6" y="12" width="32" height="24" rx="5" ry="5" fill="none" stroke="#707070" stroke-width="4"/>
        <rect x="10" y="16" width="24" height="16" rx="4" ry="4" fill="#707070"/>
        <rect x="40" y="18" width="4" height="16" rx="2" fill="#707070"/>
      </svg>
    </div>
  </div>

  <!-- App bar -->
  <div class="appbar">
    <div class="back-btn">
      <svg viewBox="0 0 48 48">
        <path d="M30 10 L16 24 L30 38" fill="none" stroke="#202020" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
      </svg>
    </div>
    <div class="title">Forward Message</div>
  </div>

  <!-- Forward area -->
  <div class="forward-box">
    <div class="message-card">
      <svg class="reply-icon" viewBox="0 0 48 48">
        <path d="M28 14 L16 24 L28 34" fill="none" stroke="#1B73D1" stroke-width="4" stroke-linecap="round" stroke-linejoin="round"/>
      </svg>
      <div class="message-text">How are you doing?</div>
    </div>
    <div class="optional-input">Type a message here (optional)</div>
  </div>

  <!-- Search -->
  <div class="search-field">
    <svg viewBox="0 0 48 48">
      <circle cx="22" cy="22" r="12" fill="none" stroke="#8a8a8a" stroke-width="4"/>
      <path d="M34 34 L44 44" stroke="#8a8a8a" stroke-width="4" stroke-linecap="round"/>
    </svg>
    <span>Search people and groups</span>
  </div>

  <!-- Suggested -->
  <div class="section-title">Suggested</div>
  <div class="list">

    <!-- Item 1 -->
    <div class="list-item">
      <div class="avatar" style="border-radius: 16px;">
        [IMG: User Avatar]
      </div>
      <div class="item-info">
        <div class="name">
          Natalie Larson (You)
          <span class="verified">
            <svg viewBox="0 0 48 48">
              <circle cx="24" cy="24" r="20" fill="#1DA1F2"/>
              <path d="M16 24l6 6 10-12" fill="none" stroke="#fff" stroke-width="4" stroke-linecap="round" stroke-linejoin="round"/>
            </svg>
          </span>
        </div>
      </div>
      <div class="send-btn">Send</div>
    </div>
    <div class="divider"></div>

    <!-- Item 2 -->
    <div class="list-item">
      <div style="position: relative;">
        <div class="avatar circle">[IMG: Avatar]</div>
        <div class="presence"></div>
      </div>
      <div class="item-info">
        <div class="name">Richard Wagner</div>
      </div>
      <div class="send-btn">Send</div>
    </div>
    <div class="divider"></div>

    <!-- Item 3 -->
    <div class="list-item">
      <div class="avatar circle">[IMG: Avatar]</div>
      <div class="item-info">
        <div class="name">Amelia miller</div>
      </div>
      <div class="send-btn">Send</div>
    </div>
    <div class="divider"></div>

    <!-- Item 4 -->
    <div class="list-item">
      <div class="avatar circle">[IMG: Group Avatar]</div>
      <div class="item-info">
        <div class="name">Friends</div>
      </div>
      <div class="send-btn">Send</div>
    </div>
    <div class="divider"></div>

    <!-- Item 5 -->
    <div class="list-item">
      <div class="avatar" style="border-radius: 22px;">[IMG: Bing Logo]</div>
      <div class="item-info">
        <div class="name">
          Bing
          <span class="verified">
            <svg viewBox="0 0 48 48">
              <circle cx="24" cy="24" r="20" fill="#1DA1F2"/>
              <path d="M16 24l6 6 10-12" fill="none" stroke="#fff" stroke-width="4" stroke-linecap="round" stroke-linejoin="round"/>
            </svg>
          </span>
        </div>
      </div>
      <div class="send-btn">Send</div>
    </div>
    <div class="divider"></div>

    <!-- Item 6 -->
    <div class="list-item">
      <div class="avatar" style="border-radius: 22px;">[IMG: Skype Logo]</div>
      <div class="item-info">
        <div class="name">
          Skype
          <span class="verified">
            <svg viewBox="0 0 48 48">
              <circle cx="24" cy="24" r="20" fill="#1DA1F2"/>
              <path d="M16 24l6 6 10-12" fill="none" stroke="#fff" stroke-width="4" stroke-linecap="round" stroke-linejoin="round"/>
            </svg>
          </span>
        </div>
      </div>
      <div class="send-btn">Send</div>
    </div>

  </div>

  <!-- People section title -->
  <div class="section-title" style="margin-top: 18px;">People</div>

  <!-- Bottom Done button and home indicator -->
  <div class="bottom-area">
    <div class="done-wrap">
      <div class="done-btn">Done</div>
    </div>
  </div>
  <div class="home-indicator"></div>

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