File size: 10,248 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
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Presentation Editor Mock</title>
<style>
  body { margin: 0; padding: 0; background: transparent; }
  #render-target {
    width: 1080px;
    height: 2400px;
    position: relative;
    overflow: hidden;
    background: #121212;
  }

  /* Status bar */
  .status-bar {
    position: absolute;
    top: 0;
    left: 0;
    width: 1080px;
    height: 120px;
    background: #0f0f0f;
    color: #ffffff;
    font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    font-size: 40px;
    display: flex;
    align-items: center;
    padding: 0 36px;
    box-sizing: border-box;
  }
  .status-left { flex: 0 0 auto; }
  .status-right {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 30px;
  }
  .status-icon svg { width: 42px; height: 42px; fill: none; stroke: #ffffff; stroke-width: 4; }

  /* App bar */
  .app-bar {
    position: absolute;
    top: 120px;
    left: 0;
    width: 1080px;
    height: 120px;
    background: #151515;
    display: flex;
    align-items: center;
    box-sizing: border-box;
    padding: 0 24px;
    color: #ff8f00;
    font-weight: 600;
    font-size: 46px;
  }
  .app-actions {
    display: flex;
    gap: 46px;
    margin: 0 auto;
    align-items: center;
  }
  .app-actions .icon-btn svg { width: 54px; height: 54px; stroke: #e0e0e0; stroke-width: 4; fill: none; }
  .title {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    color: #ff8f00;
    font-size: 46px;
  }

  /* Slide workspace */
  .slide-area {
    position: absolute;
    top: 240px;
    left: 0;
    width: 1080px;
    height: 1260px;
    background: #4e3a26;
  }

  /* Text box selection */
  .textbox {
    position: absolute;
    top: 140px;
    left: 72px;
    width: 936px;
    padding: 26px 32px 40px 80px;
    border: 2px dashed #bdbdbd;
    box-sizing: border-box;
  }
  .handle {
    position: absolute;
    width: 32px;
    height: 32px;
    background: #f5f5f5;
    border-radius: 50%;
    border: 2px solid #9e9e9e;
  }
  .handle.tl { top: -16px; left: -16px; }
  .handle.tr { top: -16px; right: -16px; }
  .handle.bl { bottom: -16px; left: -16px; }
  .handle.br { bottom: -16px; right: -16px; }
  .rotate-handle {
    position: absolute;
    top: -80px;
    left: 50%;
    transform: translateX(-50%);
    width: 48px;
    height: 48px;
    background: #f5f5f5;
    border: 2px solid #9e9e9e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .rotate-handle svg { width: 30px; height: 30px; stroke: #757575; stroke-width: 3; fill: none; }

  .slide-text {
    color: #ffffff;
    font-size: 86px;
    line-height: 1.05;
    font-weight: 500;
    letter-spacing: 0.5px;
  }
  .bullet {
    position: absolute;
    left: 38px;
    top: 188px;
    width: 22px;
    height: 22px;
    background: #ffffff;
    border-radius: 50%;
  }
  .subtext {
    position: absolute;
    top: 490px;
    left: 90px;
    font-size: 42px;
    color: #e0e0e0;
  }

  /* Formatting bar above keyboard */
  .format-bar {
    position: absolute;
    top: 1500px;
    left: 0;
    width: 1080px;
    height: 120px;
    background: #1a1a1a;
    display: flex;
    align-items: center;
    box-sizing: border-box;
    padding: 0 30px;
    color: #e0e0e0;
    gap: 36px;
    font-size: 44px;
  }
  .fmt-btn {
    display: flex;
    align-items: center;
    gap: 16px;
  }
  .fmt-icon {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #e0e0e0;
  }
  .a-underline {
    border-bottom: 8px solid #e53935;
    padding-bottom: 6px;
  }

  /* Keyboard */
  .keyboard {
    position: absolute;
    bottom: 60px;
    left: 0;
    width: 1080px;
    height: 810px;
    background: #191b1d;
    box-sizing: border-box;
    padding-top: 16px;
    color: #e0e0e0;
  }
  .suggest {
    height: 90px;
    display: flex;
    align-items: center;
    gap: 28px;
    padding: 0 26px;
    box-sizing: border-box;
    font-size: 36px;
  }
  .suggest .spacer { margin-left: auto; }
  .suggest .mic svg { width: 48px; height: 48px; stroke: #e0e0e0; stroke-width: 3; fill: none; }

  .keys {
    padding: 10px 16px 0;
    box-sizing: border-box;
    display: grid;
    grid-template-rows: repeat(4, 1fr);
    gap: 16px;
    height: 680px;
  }
  .row {
    display: flex;
    justify-content: space-between;
    gap: 12px;
  }
  .key {
    flex: 1 1 auto;
    height: 120px;
    background: #222428;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 44px;
    color: #e0e0e0;
  }
  .key.small { flex: 0 0 120px; }
  .key.wide { flex: 1 1 420px; }
  .key.circle {
    border-radius: 60px;
    background: #aab7c6;
    color: #0f0f0f;
    font-weight: 600;
  }
  .key.light {
    background: #2a2d32;
  }

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

  <!-- Status bar -->
  <div class="status-bar">
    <div class="status-left">12:30</div>
    <div class="status-right">
      <div class="status-icon">
        <!-- Crescent (Do Not Disturb) -->
        <svg viewBox="0 0 24 24"><path d="M17 12a7 7 0 1 1-6-9c-2 2-2 5 0 7s5 2 6 2z"/></svg>
      </div>
      <div class="status-icon">
        <!-- Wi-Fi -->
        <svg viewBox="0 0 24 24"><path d="M2 9c5-4 15-4 20 0"/><path d="M5 12c3-3 11-3 14 0"/><path d="M8 15c2-2 6-2 8 0"/><circle cx="12" cy="18" r="1.5" fill="#ffffff"/></svg>
      </div>
      <div class="status-icon">
        <!-- Cellular -->
        <svg viewBox="0 0 24 24"><rect x="3" y="14" width="3" height="7" fill="#ffffff"/><rect x="9" y="11" width="3" height="10" fill="#ffffff"/><rect x="15" y="7" width="3" height="14" fill="#ffffff"/></svg>
      </div>
      <div class="status-icon">
        <!-- Battery -->
        <svg viewBox="0 0 26 24"><rect x="2" y="5" width="18" height="12" rx="2" stroke="#ffffff"/><rect x="4" y="7" width="14" height="8" fill="#ffffff"/><rect x="20" y="9" width="4" height="4" rx="1" fill="#ffffff"/></svg>
      </div>
    </div>
  </div>

  <!-- App bar -->
  <div class="app-bar">
    <div class="app-actions">
      <div class="icon-btn">
        <!-- check -->
        <svg viewBox="0 0 24 24"><path d="M5 12l4 4 10-10"/></svg>
      </div>
      <div class="icon-btn">
        <!-- pencil -->
        <svg viewBox="0 0 24 24"><path d="M4 16l12-12 4 4-12 12H4z"/></svg>
      </div>
      <div class="icon-btn">
        <!-- search -->
        <svg viewBox="0 0 24 24"><circle cx="10" cy="10" r="6"/><path d="M14 14l6 6"/></svg>
      </div>
      <div class="icon-btn">
        <!-- slideshow screen -->
        <svg viewBox="0 0 24 24"><rect x="3" y="5" width="18" height="12" rx="2"/><path d="M12 17v4M7 21h10"/></svg>
      </div>
      <div class="icon-btn">
        <!-- undo -->
        <svg viewBox="0 0 24 24"><path d="M9 7H4l5-5"/><path d="M4 7c8 0 12 2 12 8"/></svg>
      </div>
      <div class="icon-btn">
        <!-- kebab -->
        <svg viewBox="0 0 24 24"><circle cx="12" cy="5" r="2"/><circle cx="12" cy="12" r="2"/><circle cx="12" cy="19" r="2"/></svg>
      </div>
    </div>
    <div class="title">Presentation.pptx</div>
  </div>

  <!-- Slide area -->
  <div class="slide-area">
    <div class="textbox">
      <div class="rotate-handle">
        <svg viewBox="0 0 24 24"><path d="M12 5a7 7 0 1 1-6 10"/><path d="M6 15l-3-1 1 3"/></svg>
      </div>
      <div class="handle tl"></div>
      <div class="handle tr"></div>
      <div class="handle bl"></div>
      <div class="handle br"></div>

      <div class="slide-text">
        Regular nature hikes strengthen<br>
        our heart, lungs, and muscles,<br>
        well as our mind
      </div>
    </div>
    <div class="bullet"></div>

    <div class="subtext">Double tap to add text</div>
  </div>

  <!-- Formatting bar -->
  <div class="format-bar">
    <div class="fmt-btn"><div class="fmt-icon">B</div></div>
    <div class="fmt-btn"><div class="fmt-icon">I</div></div>
    <div class="fmt-btn"><div class="fmt-icon">U</div></div>
    <div class="fmt-btn"><div class="fmt-icon a-underline">A</div></div>
    <div class="fmt-btn"><div class="fmt-icon"></div><span>Lists</span></div>
    <div class="fmt-btn"><div class="fmt-icon">1</div><span>2 3</span></div>
    <div class="fmt-btn"><div class="fmt-icon"></div></div>
    <div class="fmt-btn"><div class="fmt-icon"></div></div>
  </div>

  <!-- Keyboard -->
  <div class="keyboard">
    <div class="suggest">
      <div>mind</div>
      <div>mindset</div>
      <div>minds</div>
      <div class="spacer"></div>
      <div class="mic">
        <svg viewBox="0 0 24 24"><rect x="9" y="4" width="6" height="10" rx="3"/><path d="M5 10v2a7 7 0 0 0 14 0v-2"/><path d="M12 17v4"/></svg>
      </div>
    </div>
    <div class="keys">
      <div class="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="row" style="padding: 0 40px;">
        <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="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="row">
        <div class="key circle">?123</div>
        <div class="key small">,</div>
        <div class="key wide"> </div>
        <div class="key small">.</div>
        <div class="key circle"></div>
      </div>
    </div>
  </div>

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