-
-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathdemotime-infographic.html
More file actions
509 lines (463 loc) · 15.1 KB
/
Copy pathdemotime-infographic.html
File metadata and controls
509 lines (463 loc) · 15.1 KB
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
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Demo Time Terminology</title>
<link href="https://fonts.googleapis.com/css2?family=Mona+Sans:wght@400;500;600;700&family=Oswald:wght@200..700&&display=swap" rel="stylesheet">
<style>
:root {
--primary: #816600;
--primary-dark: #624d00;
--primary-light: #ffd43b;
--secondary: #313848;
--bg-dark: #15181f;
--bg-card: #202736;
--text-light: #eaeef6;
--text-muted: #9ba4b7;
--accent-glow: rgba(255, 212, 59, 0.15);
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Mona Sans', sans-serif;
background: var(--bg-dark);
color: var(--text-light);
min-height: 100vh;
padding: 40px 20px;
}
.container {
max-width: 900px;
margin: 0 auto;
}
/* Header */
.header {
text-align: center;
margin-bottom: 60px;
}
.header h1 {
font-family: 'Oswald', sans-serif;
font-size: 3rem;
font-weight: 700;
line-height: 1.2;
margin-bottom: 16px;
}
.header h1 .highlight {
color: var(--primary-light);
text-transform: uppercase;
font-weight: 800;
font-style: italic;
margin-right: .25em;
}
.header .subtitle {
font-size: 1.15rem;
color: var(--text-muted);
max-width: 500px;
margin: 0 auto;
}
/* Hierarchy Section */
.hierarchy {
display: flex;
flex-direction: column;
gap: 24px;
position: relative;
}
/* Connecting Line */
.hierarchy::before {
content: '';
position: absolute;
left: 40px;
top: 60px;
bottom: 60px;
width: 2px;
background: linear-gradient(to bottom, var(--primary), var(--primary-light));
opacity: 0.4;
}
/* Level Cards */
.level {
display: grid;
grid-template-columns: 80px 1fr;
gap: 24px;
align-items: center;
position: relative;
}
.level-number {
width: 80px;
height: 80px;
background: linear-gradient(135deg, var(--primary), var(--primary-light));
border-radius: 16px;
display: flex;
align-items: center;
justify-content: center;
font-size: 2rem;
font-weight: 700;
box-shadow: 0 8px 32px rgba(232, 90, 44, 0.3);
position: relative;
z-index: 2;
}
.level-content {
background: var(--bg-card);
border-radius: 16px;
padding: 28px 32px;
display: grid;
grid-template-columns: 1fr auto;
gap: 24px;
align-items: center;
border: 1px solid rgba(255, 255, 255, 0.05);
box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
}
.level-info h3 {
font-family: 'Hubot Sans', sans-serif;
font-size: 1.5rem;
font-weight: 700;
margin-bottom: 8px;
display: flex;
align-items: center;
gap: 12px;
}
.level-info h3 .icon {
width: 28px;
height: 28px;
display: flex;
align-items: center;
justify-content: center;
}
.level-info h3 .icon svg {
width: 100%;
height: 100%;
}
.level-info p {
color: var(--text-muted);
line-height: 1.6;
font-size: 0.95rem;
}
/* Visual Diagrams */
.visual-diagram {
display: flex;
gap: 6px;
align-items: center;
}
.diagram-box {
background: rgba(129, 102, 0, 0.15);
border: 1px solid var(--primary-light);
border-radius: 6px;
padding: 8px 12px;
font-size: 0.7rem;
font-weight: 600;
text-transform: uppercase;
letter-spacing: 0.5px;
}
.diagram-box.parent {
background: var(--primary-light);
color: var(--bg-dark);
padding: 12px 16px;
font-weight: 700;
}
.diagram-container {
display: flex;
flex-direction: column;
gap: 8px;
}
.diagram-row {
display: flex;
gap: 4px;
}
.diagram-child {
background: rgba(255, 255, 255, 0.1);
border: 1px solid rgba(255, 255, 255, 0.2);
border-radius: 4px;
padding: 6px 10px;
font-size: 0.65rem;
font-weight: 500;
text-transform: uppercase;
letter-spacing: 0.5px;
color: var(--text-muted);
}
/* Arrow between children */
.arrow-icon {
color: var(--primary-light);
font-size: 0.8rem;
}
/* Move sequence */
.move-sequence {
display: flex;
align-items: center;
gap: 8px;
}
.move-step {
width: 80px;
height: 80px;
background: var(--bg-card);
border: 2px solid rgba(255, 255, 255, 0.15);
border-radius: 8px;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
gap: 6px;
font-size: 0.9rem;
}
.move-step svg {
width: 24px;
height: 24px;
stroke: var(--text-muted);
}
.move-step span {
font-size: 0.65rem;
color: var(--text-muted);
text-align: center;
line-height: 1.2;
}
.move-step.active {
background: var(--primary-dark);
border-color: var(--primary-dark);
}
.move-step.active svg {
stroke: var(--primary-light);
}
.move-step.active span {
color: var(--primary-light);
font-weight: 600;
}
/* Key Takeaway */
.takeaway {
margin-top: 48px;
background: linear-gradient(135deg, var(--primary), var(--primary-light));
border-radius: 20px;
padding: 32px 40px;
text-align: center;
box-shadow: 0 12px 48px rgba(129, 102, 0, 0.3);
}
.takeaway h4 {
font-family: 'Hubot Sans', sans-serif;
font-size: 0.85rem;
text-transform: uppercase;
letter-spacing: 2px;
margin-bottom: 12px;
opacity: 0.9;
color: var(--bg-dark);
}
.takeaway p {
font-size: 1.15rem;
line-height: 1.7;
max-width: 700px;
margin: 0 auto;
color: var(--bg-dark);
}
.takeaway .hierarchy-path {
display: inline-flex;
align-items: center;
gap: 8px;
background: rgba(21, 24, 31, 0.25);
padding: 8px 16px;
border-radius: 8px;
margin-top: 16px;
font-weight: 600;
color: var(--bg-dark);
}
.takeaway .hierarchy-path span {
opacity: 0.6;
}
/* Responsive */
@media (max-width: 768px) {
.header h1 {
font-size: 2rem;
}
.level {
grid-template-columns: 60px 1fr;
gap: 16px;
}
.level-number {
width: 60px;
height: 60px;
font-size: 1.5rem;
}
.level-content {
grid-template-columns: 1fr;
padding: 20px;
}
.visual-diagram {
justify-content: flex-start;
}
.hierarchy::before {
left: 30px;
}
}
</style>
</head>
<body>
<div class="container">
<!-- Header -->
<header class="header">
<h1>Master your demos:<br><span class="highlight">Demo Time</span> Terminology</h1>
<p class="subtitle">Simplify demo creation with our theatrical structure:<br /> Play, Act, Scene, and Move.</p>
</header>
<!-- Hierarchy -->
<div class="hierarchy">
<!-- Play -->
<div class="level">
<div class="level-number">1</div>
<div class="level-content">
<div class="level-info">
<h3>
<span class="icon">
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
<path d="M10 11h.01"/>
<path d="M14 6h.01"/>
<path d="M18 6h.01"/>
<path d="M6.5 13.1h.01"/>
<path d="M22 5c0 9-4 12-6 12s-6-3-6-12c0-2 2-3 6-3s6 1 6 3"/>
<path d="M17.4 9.9c-.8.8-2 .8-2.8 0"/>
<path d="M10.1 7.1C9 7.2 7.7 7.7 6 8.6c-3.5 2-4.7 3.9-3.7 5.6 4.5 7.8 9.5 8.4 11.2 7.4.9-.5 1.9-2.1 1.9-4.7"/>
<path d="M9.1 16.5c.3-1.1 1.4-1.7 2.4-1.4"/>
</svg>
</span>
Play
</h3>
<p>Your entire demo project. It contains everything you want to present. Structure large or multi-part demos within one Play.</p>
</div>
<div class="visual-diagram">
<div class="diagram-container">
<div class="diagram-box parent">PLAY</div>
<div class="diagram-row">
<div class="diagram-child">Act</div>
<div class="diagram-child">Act</div>
<div class="diagram-child">Act</div>
<div class="diagram-child">Act</div>
</div>
</div>
</div>
</div>
</div>
<!-- Act -->
<div class="level">
<div class="level-number">2</div>
<div class="level-content">
<div class="level-info">
<h3>
<span class="icon">
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
<path d="M20.2 6 3 11l-.9-2.4c-.3-1.1.3-2.2 1.3-2.5l13.5-4c1.1-.3 2.2.3 2.5 1.3Z"/>
<path d="m6.2 5.3 3.1 3.9"/>
<path d="m12.4 3.4 3.1 4"/>
<path d="M3 11h18v8a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2Z"/>
</svg>
</span>
Act
</h3>
<p>A single act file in your project. Each Act focuses on a specific topic or part of your story.</p>
</div>
<div class="visual-diagram">
<div class="diagram-container">
<div class="diagram-box parent">ACT</div>
<div class="diagram-row">
<div class="diagram-child">Scene</div>
<div class="diagram-child">Scene</div>
<div class="diagram-child">Scene</div>
</div>
</div>
</div>
</div>
</div>
<!-- Scene -->
<div class="level">
<div class="level-number">3</div>
<div class="level-content">
<div class="level-info">
<h3>
<span class="icon">
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
<path d="M15.295 19.562 16 22"/>
<path d="m17 16 3.758 2.098"/>
<path d="m19 12.5 3.026-.598"/>
<path d="M7.61 6.3a3 3 0 0 0-3.92 1.3l-1.38 2.79a3 3 0 0 0 1.3 3.91l6.89 3.597a1 1 0 0 0 1.342-.447l3.106-6.211a1 1 0 0 0-.447-1.341z"/>
<path d="M8 9V2"/>
</svg>
</span>
Scene
</h3>
<p>A single demo section inside an Act. Break Acts into digestible parts showing specific features or ideas.</p>
</div>
<div class="visual-diagram">
<div class="diagram-container">
<div class="diagram-box parent">SCENE</div>
<div class="diagram-row">
<div class="diagram-child">Move</div>
<div class="diagram-child">Move</div>
<div class="diagram-child">Move</div>
</div>
</div>
</div>
</div>
</div>
<!-- Move -->
<div class="level">
<div class="level-number">4</div>
<div class="level-content">
<div class="level-info">
<h3>
<span class="icon">
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
<path d="M4 16v-2.38C4 11.5 2.97 10.5 3 8c.03-2.72 1.49-6 4.5-6C9.37 2 10 3.8 10 5.5c0 3.11-2 5.66-2 8.68V16a2 2 0 1 1-4 0Z"/>
<path d="M20 20v-2.38c0-2.12 1.03-3.12 1-5.62-.03-2.72-1.49-6-4.5-6C14.63 6 14 7.8 14 9.5c0 3.11 2 5.66 2 8.68V20a2 2 0 1 0 4 0Z"/>
<path d="M16 17h4"/>
<path d="M4 13h4"/>
</svg>
</span>
Move
</h3>
<p>One step inside a Scene. Executes in order to perform a clear action like showing text, highlighting code, or switching tools.</p>
</div>
<div class="visual-diagram">
<div class="move-sequence">
<div class="move-step active">
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
<path d="M2 3h20"/><path d="M21 3v11a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V3"/>
<path d="m7 21 5-5 5 5"/>
</svg>
<span>Talk</span>
</div>
<span class="arrow-icon">→</span>
<div class="move-step">
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
<path d="m16 18 6-6-6-6"/>
<path d="m8 6-6 6 6 6"/>
</svg>
<span>Show code</span>
</div>
<span class="arrow-icon">→</span>
<div class="move-step">
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
<path d="m9 11-6 6v3h9l3-3"/>
<path d="m22 12-4.6 4.6a2 2 0 0 1-2.8 0l-5.2-5.2a2 2 0 0 1 0-2.8L14 4"/>
</svg>
<span>Highlight</span>
</div>
<span class="arrow-icon">→</span>
<div class="move-step">
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
<path d="m7 11 2-2-2-2"/>
<path d="M11 13h4"/>
<rect width="18" height="18" x="3" y="3" rx="2" ry="2"/>
</svg>
<span>Run command</span>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Key Takeaway -->
<div class="takeaway">
<h4>Key Takeaway</h4>
<p>Demo Time uses a hierarchical structure to organize complex demos into manageable, <strong>narrative-driven</strong> presentations, making them easier to build and follow.</p>
<div class="hierarchy-path">
Play <span>›</span> Act <span>›</span> Scene <span>›</span> Move
</div>
</div>
</div>
</body>
</html>