File size: 10,498 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=1080, initial-scale=1.0">
<title>Presentation Viewer Mock</title>
<style>
  body { margin: 0; padding: 0; background: transparent; }
  #render-target {
    width: 1080px; height: 2400px;
    position: relative; overflow: hidden;
    background: #000; color: #fff; font-family: "Segoe UI", Arial, sans-serif;
  }

  /* Top system status bar */
  .status-bar {
    position: absolute; top: 0; left: 0; width: 1080px; height: 110px;
    background: #121212; color: #fff;
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 28px; box-sizing: border-box; font-size: 38px;
  }
  .status-left { display: flex; align-items: center; gap: 24px; }
  .status-right { display: flex; align-items: center; gap: 24px; }
  .status-icon svg { width: 40px; height: 40px; fill: none; stroke: #fff; stroke-width: 3; }

  /* App navigation bar */
  .nav-bar {
    position: absolute; top: 110px; left: 0; width: 1080px; height: 120px;
    background: #1d1d1d; border-bottom: 1px solid #2a2a2a;
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 24px; box-sizing: border-box;
  }
  .nav-left { display: flex; align-items: center; gap: 28px; }
  .nav-title { font-size: 40px; font-weight: 500; color: #eaeaea; }
  .icon-btn svg { width: 56px; height: 56px; stroke: #eaeaea; fill: none; stroke-width: 3; }

  /* Slides area */
  .content {
    position: absolute; top: 250px; left: 0; width: 1080px; height: 1640px;
    overflow: hidden; /* simulate viewport */
  }

  .slide {
    width: 1028px; margin: 0 auto 24px auto; box-sizing: border-box;
    background: #4e3f2e; color: #fff;
  }

  /* Slide 1 styling */
  .slide.one { border: 6px solid #0a0a0a; }
  .strip {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
    height: 210px;
  }
  .tile {
    position: relative; height: 100%;
  }
  .tile.dark { background: #6d3f39; }
  .tile.mid { background: #77443d; }
  .tile.light { background: #c99a96; }
  .tile .bow {
    position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  }
  .tile .bow svg { width: 140px; height: 140px; stroke: #e7d1c6; stroke-width: 10; fill: none; }
  .tile .ribbon-v {
    position: absolute; top: 0; bottom: 0; left: 50%; width: 16px; background: #b2c6bd; transform: translateX(-50%);
  }
  .tile .ribbon-h {
    position: absolute; left: 0; right: 0; top: 50%; height: 16px; background: #d7c2b7; transform: translateY(-50%);
  }

  /* Image placeholder per spec */
  .img-placeholder {
    background: #E0E0E0; border: 1px solid #BDBDBD; color: #757575;
    display: flex; align-items: center; justify-content: center;
    font-size: 32px; text-align: center;
    height: 100%;
  }

  .title-band {
    height: 250px; display: flex; align-items: center; padding-left: 56px;
    box-sizing: border-box;
  }
  .title-text { font-size: 64px; font-weight: 600; letter-spacing: 0.5px; }

  /* Divider between slides */
  .divider { width: 1080px; height: 22px; background: #000; }

  /* Slide 2 styling */
  .slide.two { border: 8px solid #cf5636; height: 860px; display: grid; grid-template-columns: 1fr 330px; }
  .two .left {
    background: #4e3f2e;
  }
  .two .right { display: grid; grid-template-rows: 1fr 1fr; }
  .pattern-box { position: relative; background: #6d3f39; }
  .pattern-box.light { background: #c99a96; }
  .pattern-box .bow { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; }
  .pattern-box .bow svg { width: 160px; height: 160px; stroke: #e7d1c6; stroke-width: 10; fill: none; }
  .pattern-box .ribbon-v, .pattern-box .ribbon-h { background: #d9c9bf; }
  .pattern-box .ribbon-v { position: absolute; left: 50%; top: 0; bottom: 0; width: 18px; transform: translateX(-50%); }
  .pattern-box .ribbon-h { position: absolute; top: 50%; left: 0; right: 0; height: 18px; transform: translateY(-50%); }
  .dot-ring {
    position: absolute; left: 50%; top: 50%; width: 220px; height: 220px;
    transform: translate(-50%, -50%); border-radius: 50%;
    border: 2px dotted rgba(255,255,255,0.35);
  }

  /* Bottom bar */
  .bottom-bar {
    position: absolute; bottom: 0; left: 0; width: 1080px; height: 180px;
    background: #1d1d1d; border-top: 1px solid #2a2a2a;
    display: flex; align-items: center; justify-content: space-around;
  }
  .action {
    width: 200px; text-align: center; color: #cfcfcf; font-size: 30px;
  }
  .action svg { width: 64px; height: 64px; stroke: #cfcfcf; fill: none; stroke-width: 4; margin-bottom: 14px; }

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

  <!-- Status bar -->
  <div class="status-bar">
    <div class="status-left">
      <div>12:29</div>
      <div class="status-icon">
        <!-- Moon -->
        <svg viewBox="0 0 40 40"><path d="M26 4a14 14 0 1 0 10 22A16 16 0 0 1 26 4z" fill="#fff" stroke="none"/></svg>
      </div>
      <div class="status-icon">
        <!-- Do Not Disturb (circle) -->
        <svg viewBox="0 0 40 40"><circle cx="20" cy="20" r="12" stroke="#fff"/><line x1="10" y1="20" x2="30" y2="20" stroke="#fff"/></svg>
      </div>
      <div class="status-icon">
        <!-- Cast -->
        <svg viewBox="0 0 40 40"><rect x="6" y="8" width="28" height="20" rx="3" stroke="#fff"/><path d="M6 32c6 0 10 4 10 4" stroke="#fff"/></svg>
      </div>
      <div class="status-icon">
        <!-- Dot -->
        <svg viewBox="0 0 40 40"><circle cx="20" cy="20" r="4" fill="#fff"/></svg>
      </div>
    </div>
    <div class="status-right">
      <div class="status-icon">
        <!-- Signal -->
        <svg viewBox="0 0 40 40"><path d="M6 28h4M6 24h8M6 20h12M6 16h16" stroke="#fff"/></svg>
      </div>
      <div class="status-icon">
        <!-- Battery -->
        <svg viewBox="0 0 40 40"><rect x="8" y="10" width="24" height="20" rx="3" stroke="#fff"/><rect x="32" y="16" width="3" height="8" fill="#fff" stroke="none"/></svg>
      </div>
    </div>
  </div>

  <!-- Navigation bar -->
  <div class="nav-bar">
    <div class="nav-left">
      <div class="icon-btn">
        <!-- Back arrow -->
        <svg viewBox="0 0 64 64"><polyline points="38,14 20,32 38,50" stroke="#fff" stroke-width="5" fill="none" stroke-linecap="round" stroke-linejoin="round"/></svg>
      </div>
      <div class="nav-title">Presentation.pptx - Saved</div>
    </div>
    <div class="icon-btn">
      <!-- More (vertical dots) -->
      <svg viewBox="0 0 64 64">
        <circle cx="32" cy="16" r="4" fill="#eaeaea" stroke="none"/>
        <circle cx="32" cy="32" r="4" fill="#eaeaea" stroke="none"/>
        <circle cx="32" cy="48" r="4" fill="#eaeaea" stroke="none"/>
      </svg>
    </div>
  </div>

  <!-- Main content -->
  <div class="content">

    <!-- Slide 1 -->
    <div class="slide one">
      <div class="strip">
        <div class="tile dark">
          <div class="ribbon-h"></div>
          <div class="ribbon-v"></div>
          <div class="bow">
            <svg viewBox="0 0 140 140">
              <path d="M70 70c-20-10-30-30-50-30 20 0 30 20 50 30z" />
              <path d="M70 70c20-10 30-30 50-30-20 0-30 20-50 30z" />
              <circle cx="70" cy="70" r="8" />
            </svg>
          </div>
        </div>
        <div class="tile">
          <div class="img-placeholder">[IMG: Hiking Gear Flatlay]</div>
        </div>
        <div class="tile mid">
          <div class="ribbon-v" style="background:#a8c0b4; width:14px;"></div>
          <div class="bow">
            <svg viewBox="0 0 140 140">
              <path d="M70 70c-18-8-28-26-44-26 18 0 26 18 44 26z" />
              <path d="M70 70c18-8 28-26 44-26-18 0-26 18-44 26z" />
              <circle cx="70" cy="70" r="8" />
            </svg>
          </div>
        </div>
        <div class="tile light">
          <div class="dot-ring"></div>
        </div>
      </div>
      <div class="title-band">
        <div class="title-text">Importance of Hiking</div>
      </div>
    </div>

    <div class="divider"></div>

    <!-- Slide 2 -->
    <div class="slide two">
      <div class="left"></div>
      <div class="right">
        <div class="pattern-box">
          <div class="ribbon-h"></div>
          <div class="ribbon-v"></div>
          <div class="bow">
            <svg viewBox="0 0 160 160">
              <path d="M80 80c-24-12-36-34-60-34 24 0 36 22 60 34z" />
              <path d="M80 80c24-12 36-34 60-34-24 0-36 22-60 34z" />
              <circle cx="80" cy="80" r="9" />
            </svg>
          </div>
        </div>
        <div class="pattern-box light">
          <div class="dot-ring"></div>
        </div>
      </div>
    </div>

    <!-- Spacer representing empty area -->
    <div style="width:1080px; height: 540px; background:#000;"></div>
  </div>

  <!-- Bottom action bar -->
  <div class="bottom-bar">
    <div class="action">
      <svg viewBox="0 0 64 64">
        <polygon points="24,16 48,32 24,48" fill="none" stroke-linejoin="round"/>
        <rect x="10" y="14" width="8" height="36" rx="2" />
      </svg>
      <div>Present</div>
    </div>
    <div class="action">
      <svg viewBox="0 0 64 64">
        <rect x="12" y="12" width="40" height="40" rx="4"/>
        <line x1="18" y1="24" x2="46" y2="24"/>
        <line x1="18" y1="32" x2="38" y2="32"/>
        <line x1="18" y1="40" x2="34" y2="40"/>
      </svg>
      <div>Notes</div>
    </div>
    <div class="action">
      <svg viewBox="0 0 64 64">
        <path d="M18 46l28-28" />
        <path d="M18 46l2-12 10 2" />
        <rect x="12" y="12" width="40" height="40" rx="8" style="opacity:0.2; stroke:#cfcfcf"/>
      </svg>
      <div>Edit</div>
    </div>
    <div class="action">
      <svg viewBox="0 0 64 64">
        <circle cx="28" cy="28" r="16"/>
        <line x1="42" y1="42" x2="54" y2="54"/>
      </svg>
      <div>Find</div>
    </div>
    <div class="action">
      <svg viewBox="0 0 64 64">
        <circle cx="20" cy="42" r="6"/>
        <circle cx="44" cy="12" r="6"/>
        <circle cx="52" cy="44" r="6"/>
        <line x1="24" y1="38" x2="40" y2="18"/>
        <line x1="26" y1="38" x2="47" y2="41"/>
      </svg>
      <div>Share</div>
    </div>
    <div class="handle"></div>
  </div>

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