File size: 9,245 Bytes
ff1f000
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=1080, initial-scale=1.0">
<title>Share Screen</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: #23160F; color: #E9D2C0;
  }

  /* Status bar */
  .statusbar {
    height: 100px; padding: 0 32px; display: flex; align-items: center; justify-content: space-between;
    color: #EAD4C4; font-size: 36px;
  }
  .status-right { display: flex; align-items: center; gap: 24px; }
  .icon { display: inline-flex; align-items: center; justify-content: center; }
  .icon svg { width: 42px; height: 42px; fill: #EAD4C4; }

  /* Header */
  .header {
    height: 150px; padding: 0 32px; display: flex; align-items: center; justify-content: space-between;
    border-bottom: 1px solid #3C2C23;
  }
  .header-left { display: flex; align-items: center; gap: 28px; }
  .header-left .title { font-size: 56px; font-weight: 600; color: #EAD4C4; }
  .header-right { display: flex; align-items: center; gap: 36px; }
  .header .icon svg { width: 54px; height: 54px; fill: #CBB19C; }

  /* Add people input row */
  .input-row {
    height: 120px; display: flex; align-items: center; gap: 24px;
    padding: 0 32px; border-bottom: 1px solid #3C2C23;
  }
  .caret { width: 3px; height: 48px; background: #E2A777; border-radius: 2px; }
  .input-placeholder { font-size: 44px; color: #CEB39E; }

  /* Content area */
  .content { position: relative; height: 1230px; }
  .manage-section {
    position: absolute; left: 32px; right: 32px; bottom: 900px;
  }
  .manage-title { font-size: 42px; color: #DCC1AE; margin-bottom: 24px; }
  .avatars { display: flex; align-items: center; gap: 26px; }
  .avatar {
    width: 92px; height: 92px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: #23160F; font-weight: 700; font-size: 44px;
  }
  .avatar.pink { background: #D81B60; color: #FBE8E1; }
  .avatar.teal { background: #0EA5A7; color: #EAF6F6; }
  .divider-vert { width: 2px; height: 60px; background: #5A463B; }

  /* Keyboard */
  .keyboard {
    position: absolute; left: 0; right: 0; bottom: 0;
    height: 900px; background: #1E1814; border-top: 1px solid #3C2C23;
    display: flex; flex-direction: column;
  }
  .kb-topbar {
    height: 120px; display: flex; align-items: center; gap: 48px; padding: 0 36px; color: #EAD4C4;
  }
  .kb-topbar .icon svg { width: 48px; height: 48px; fill: #EAD4C4; }
  .kb-rows { flex: 1; display: flex; flex-direction: column; justify-content: center; gap: 22px; padding: 0 24px; }
  .kb-row { display: flex; justify-content: center; align-items: center; gap: 18px; }
  .key {
    height: 120px; min-width: 86px; padding: 0 8px; border-radius: 28px;
    background: #2A2420; color: #EAD4C4; font-size: 48px; display: flex; align-items: center; justify-content: center;
    box-shadow: inset 0 0 0 1px #3A302A;
  }
  .key.wide { min-width: 160px; }
  .space { flex: 1; height: 120px; border-radius: 28px; background: #2A2420; box-shadow: inset 0 0 0 1px #3A302A; }
  .key.special { background: #E9C7A9; color: #2A2420; }
  .key.circle { border-radius: 50%; min-width: 120px; height: 120px; }

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

  <!-- Status bar -->
  <div class="statusbar">
    <div>9:13</div>
    <div class="status-right">
      <!-- Wi-Fi -->
      <span class="icon">
        <svg viewBox="0 0 24 24">
          <path d="M2 8c5-4 15-4 20 0l-2 2c-4-3-12-3-16 0L2 8zM6 12c3-2 9-2 12 0l-2 2c-2-1-6-1-8 0l-2-2z"/>
          <circle cx="12" cy="17" r="2"/>
        </svg>
      </span>
      <!-- Battery -->
      <span class="icon">
        <svg viewBox="0 0 24 24">
          <rect x="2" y="6" width="18" height="12" rx="2"></rect>
          <rect x="21" y="10" width="2" height="4"></rect>
          <rect x="4" y="8" width="14" height="8" fill="#EAD4C4"></rect>
        </svg>
      </span>
    </div>
  </div>

  <!-- Header -->
  <div class="header">
    <div class="header-left">
      <!-- Close X -->
      <span class="icon">
        <svg viewBox="0 0 24 24">
          <path d="M5 5l14 14M19 5L5 19" stroke="#CBB19C" stroke-width="2" fill="none" stroke-linecap="round"/>
        </svg>
      </span>
      <div class="title">Share</div>
    </div>
    <div class="header-right">
      <!-- Send -->
      <span class="icon">
        <svg viewBox="0 0 24 24">
          <path d="M3 12l18-9-6 18-4-7-8-2z" />
        </svg>
      </span>
      <!-- More vertical -->
      <span class="icon">
        <svg viewBox="0 0 24 24">
          <circle cx="12" cy="5" r="2"></circle>
          <circle cx="12" cy="12" r="2"></circle>
          <circle cx="12" cy="19" r="2"></circle>
        </svg>
      </span>
    </div>
  </div>

  <!-- Add people row -->
  <div class="input-row">
    <!-- Person add icon -->
    <span class="icon">
      <svg viewBox="0 0 24 24">
        <circle cx="9" cy="8" r="3" fill="#CBB19C"></circle>
        <path d="M2 20c1-4 12-4 14 0" stroke="#CBB19C" stroke-width="2" fill="none" stroke-linecap="round"/>
        <path d="M18 7v3M16.5 8.5h3" stroke="#CBB19C" stroke-width="2" stroke-linecap="round"/>
      </svg>
    </span>
    <div class="caret"></div>
    <div class="input-placeholder">Add people or groups</div>
  </div>

  <!-- Content -->
  <div class="content">
    <div class="manage-section">
      <div class="manage-title">Manage access</div>
      <div class="avatars">
        <div class="avatar pink">C</div>
        <div class="divider-vert"></div>
        <div class="avatar teal">
          <!-- simple user silhouette -->
          <svg viewBox="0 0 24 24" width="48" height="48">
            <circle cx="12" cy="8" r="4" fill="#EAF6F6"></circle>
            <path d="M4 20c0-4 16-4 16 0" fill="#EAF6F6"></path>
          </svg>
        </div>
      </div>
    </div>
  </div>

  <!-- Keyboard -->
  <div class="keyboard">
    <div class="kb-topbar">
      <span class="icon">
        <!-- grid icon -->
        <svg viewBox="0 0 24 24">
          <path d="M3 3h7v7H3zM14 3h7v7h-7zM3 14h7v7H3zM14 14h7v7h-7z"></path>
        </svg>
      </span>
      <span class="icon">
        <!-- emoji -->
        <svg viewBox="0 0 24 24">
          <circle cx="12" cy="12" r="10"></circle>
          <circle cx="9" cy="10" r="1.5" fill="#23160F"></circle>
          <circle cx="15" cy="10" r="1.5" fill="#23160F"></circle>
          <path d="M7 14c2 3 8 3 10 0" fill="none" stroke="#23160F" stroke-width="2" stroke-linecap="round"/>
        </svg>
      </span>
      <span style="font-size: 42px; color:#EAD4C4;">GIF</span>
      <span class="icon">
        <!-- gear -->
        <svg viewBox="0 0 24 24">
          <path d="M12 8a4 4 0 1 0 0 8 4 4 0 0 0 0-8zm8 4l-2 1.2.3 2.3-2.3.3L14.8 18 13 16.8 11.2 18l-1.2-2.2-2.3-.3.3-2.3L6 12l2-1.2-.3-2.3 2.3-.3L12 6l1.8 1.2 2.3-.3-.3 2.3L20 12z"></path>
        </svg>
      </span>
      <span class="icon">
        <!-- translate simple -->
        <svg viewBox="0 0 24 24">
          <path d="M4 4h8v8H4zM13 13h7v7h-7zM7 7h2M15 16l2 4M17 16l-2 4" stroke="#EAD4C4" fill="none" stroke-width="2" stroke-linecap="round"/>
        </svg>
      </span>
      <span class="icon">
        <!-- palette -->
        <svg viewBox="0 0 24 24">
          <path d="M12 3c5 0 9 3 9 7 0 3-3 3-4 3-1 0-1 2 0 3 1 1 1 5-5 5-6 0-9-5-9-9 0-4 4-9 9-9z"></path>
        </svg>
      </span>
      <span class="icon">
        <!-- mic -->
        <svg viewBox="0 0 24 24">
          <rect x="9" y="5" width="6" height="10" rx="3"></rect>
          <path d="M5 12c0 4 14 4 14 0M12 16v4M9 20h6" stroke="#EAD4C4" stroke-width="2" fill="none" stroke-linecap="round"/>
        </svg>
      </span>
    </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 wide">shift</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-row">
        <div class="key special wide">?123</div>
        <div class="key">,</div>
        <div class="space"></div>
        <div class="key">.</div>
        <div class="key special circle"></div>
      </div>
    </div>
  </div>

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