File size: 8,948 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
<html>
<head>
<meta charset="UTF-8">
<title>Mobile Reader Overlay UI</title>
<style>
  body { margin: 0; padding: 0; background: transparent; }
  #render-target {
    width: 1080px;
    height: 2400px;
    position: relative;
    overflow: hidden;
    background: #0d0d0f;
    font-family: Georgia, "Times New Roman", serif;
    color: #222;
  }

  /* Status bar */
  .statusbar {
    position: absolute;
    top: 0;
    left: 0;
    width: 1080px;
    height: 120px;
    background: #000;
    color: #fff;
    font-family: Arial, sans-serif;
    font-size: 44px;
    display: flex;
    align-items: center;
    padding: 0 40px;
    box-sizing: border-box;
  }
  .status-right {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 20px;
  }
  .dot {
    width: 22px;
    height: 22px;
    background: #fff;
    border-radius: 50%;
    opacity: 0.85;
  }
  .icon-wifi, .icon-battery {
    width: 44px;
    height: 44px;
    border: 3px solid #fff;
    border-radius: 8px;
  }

  /* Toolbar */
  .toolbar {
    position: absolute;
    top: 120px;
    left: 0;
    width: 1080px;
    height: 140px;
    background: #0a0a0a;
    color: #eee;
    border-bottom: 1px solid #222;
    display: flex;
    align-items: center;
    padding: 0 32px;
    box-sizing: border-box;
    gap: 28px;
  }
  .tool-item {
    width: 90px;
    height: 90px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #121212;
    border: 1px solid #2b2b2b;
  }
  .tool-label {
    color: #bfbfbf;
    font-size: 34px;
    margin-left: 8px;
  }
  .spacer { flex: 1; }

  /* Book content area */
  .page {
    position: absolute;
    top: 260px;
    left: 0;
    width: 1080px;
    height: 2100px;
    overflow: hidden;
    background: #111; /* app background under page */
  }
  .paper {
    position: absolute;
    left: 0;
    right: 0;
    background: #fafafa;
    color: #333;
    padding: 64px;
    box-sizing: border-box;
    line-height: 1.7;
    font-size: 40px;
    box-shadow: 0 0 0 1px #ddd inset;
  }
  .paper.top {
    top: 0;
    height: 980px;
  }
  .paper.bottom {
    bottom: 0;
    height: 980px;
  }
  .chapter-title {
    text-align: center;
    font-weight: bold;
    font-size: 64px;
    letter-spacing: 2px;
    margin-top: 40px;
    margin-bottom: 40px;
  }
  .divider {
    position: absolute;
    top: 1040px;
    left: 0;
    width: 1080px;
    height: 6px;
    background: #000;
    opacity: 0.85;
  }

  /* Dim overlay */
  .overlay {
    position: absolute;
    top: 320px;
    left: 0;
    width: 1080px;
    height: 1680px;
    background: rgba(90, 90, 90, 0.7);
  }

  /* Floating actions */
  .action {
    position: absolute;
    right: 70px;
    display: flex;
    align-items: center;
    gap: 28px;
    color: #fff;
    font-family: Arial, sans-serif;
    font-size: 52px;
  }
  .fab {
    width: 120px;
    height: 120px;
    border-radius: 60px;
    background: #3B82F6;
    box-shadow: 0 8px 20px rgba(0,0,0,0.35);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .action.capture { top: 960px; }
  .action.comment { top: 1180px; }
  .action.signature { top: 1420px; }
  .action.edit { top: 1680px; }
  .action.pages { top: 1900px; }

  /* Close big FAB */
  .big-close {
    position: absolute;
    right: 80px;
    bottom: 160px;
    width: 140px;
    height: 140px;
    border-radius: 70px;
    background: #3B82F6;
    box-shadow: 0 10px 24px rgba(0,0,0,0.35);
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* Home indicator */
  .home-indicator {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    width: 420px;
    height: 16px;
    background: #ffffff;
    border-radius: 10px;
    opacity: 0.9;
  }

  /* Simple icons (SVG) */
  svg { display: block; }
  .ico { width: 56px; height: 56px; }
</style>
</head>
<body>
<div id="render-target">

  <!-- status bar -->
  <div class="statusbar">
    <div>12:06</div>
    <div class="status-right">
      <div class="dot"></div>
      <div class="dot"></div>
      <div class="dot"></div>
      <div class="dot"></div>
      <div class="icon-wifi"></div>
      <div class="icon-battery"></div>
    </div>
  </div>

  <!-- toolbar -->
  <div class="toolbar">
    <div class="tool-item">
      <!-- back arrow -->
      <svg class="ico" viewBox="0 0 24 24">
        <path d="M15 19L8 12l7-7" stroke="#fff" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
      </svg>
    </div>
    <div class="tool-item">
      <!-- list icon -->
      <svg class="ico" viewBox="0 0 24 24">
        <path d="M4 6h16M4 12h16M4 18h10" stroke="#bfbfbf" stroke-width="2" fill="none" stroke-linecap="round"/>
      </svg>
    </div>
    <div class="tool-item">
      <!-- droplet -->
      <svg class="ico" viewBox="0 0 24 24">
        <path d="M12 3s6 6 6 10a6 6 0 1 1-12 0c0-4 6-10 6-10z" fill="#bfbfbf"/>
      </svg>
    </div>
    <div class="tool-item">
      <!-- grid icon -->
      <svg class="ico" viewBox="0 0 24 24">
        <path d="M3 3h8v8H3zM13 3h8v8h-8zM3 13h8v8H3zM13 13h8v8h-8z" fill="#bfbfbf"/>
      </svg>
    </div>
    <div class="spacer"></div>
    <div class="tool-item">
      <!-- search -->
      <svg class="ico" viewBox="0 0 24 24">
        <circle cx="10" cy="10" r="6" stroke="#bfbfbf" stroke-width="2" fill="none"/>
        <path d="M21 21l-5-5" stroke="#bfbfbf" stroke-width="2" fill="none" stroke-linecap="round"/>
      </svg>
    </div>
    <div class="tool-item">
      <!-- more menu -->
      <svg class="ico" viewBox="0 0 24 24">
        <circle cx="5" cy="12" r="2" fill="#bfbfbf"/>
        <circle cx="12" cy="12" r="2" fill="#bfbfbf"/>
        <circle cx="19" cy="12" r="2" fill="#bfbfbf"/>
      </svg>
    </div>
  </div>

  <!-- content pages -->
  <div class="page">
    <div class="paper top">
      <p>She heard Mr. Ganz inhale sharply. After a second he said, “King to bishop one.”</p>
      <p>“That’s mate in three,” Beth said, without turning. “First check is with the knight. The king has the two dark squares, and the bishop checks it. Then the knight mates.”</p>
      <p>Mr. Ganz let out his breath slowly. “Jesus Christ!” he said.</p>
    </div>

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

    <div class="paper bottom">
      <div class="chapter-title">TWO</div>
      <p>They were watching the Saturday-afternoon movie when Mr. Fergusson came to take her to Mrs. Deardorff’s office. It was a movie about manners called “How to Act at Dinnertime,” so she didn’t mind leaving. But she was frightened. Had they found out that she never went to chapel? That she saved pills?</p>
      <p>Her legs trembled and her knees felt funny as Mr. Fergusson, wearing his white pants and white T-shirt, walked her down the long hallway. She squinted her eyes under the bright fluorescent lights.</p>
      <p>At the door with the frosted glass panel and the words HELEN DEARDORFF—SUPERINTENDENT he stopped.</p>
    </div>
  </div>

  <!-- Dim overlay -->
  <div class="overlay"></div>

  <!-- Floating actions with labels -->
  <div class="action capture">
    <div>Capture</div>
    <div class="fab">
      <svg viewBox="0 0 24 24" width="60" height="60">
        <path d="M8 7l2-2h4l2 2h3a2 2 0 0 1 2 2v8a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V9a2 2 0 0 1 2-2h3z" fill="#fff"/>
        <circle cx="12" cy="13" r="4" fill="#3B82F6"/>
        <circle cx="12" cy="13" r="3" fill="#fff"/>
      </svg>
    </div>
  </div>

  <div class="action comment">
    <div>Comment</div>
    <div class="fab">
      <svg viewBox="0 0 24 24" width="60" height="60">
        <path d="M4 4h16v12H13l-5 4v-4H4z" fill="#fff"/>
        <text x="8" y="12" font-size="10" font-family="Arial" fill="#3B82F6">T</text>
      </svg>
    </div>
  </div>

  <div class="action signature">
    <div>Signature</div>
    <div class="fab">
      <svg viewBox="0 0 24 24" width="60" height="60">
        <path d="M3 17l10-10 4 4-10 10H3v-4z" fill="#fff"/>
        <path d="M14 7l3-3" stroke="#3B82F6" stroke-width="2"/>
      </svg>
    </div>
  </div>

  <div class="action edit">
    <div>Edit</div>
    <div class="fab">
      <svg viewBox="0 0 24 24" width="60" height="60">
        <path d="M3 17l2 4 4-2 10-10-4-4L5 15z" fill="#fff"/>
        <path d="M14 4l4 4" stroke="#3B82F6" stroke-width="2"/>
      </svg>
    </div>
  </div>

  <div class="action pages">
    <div>Pages</div>
    <div class="fab">
      <svg viewBox="0 0 24 24" width="60" height="60">
        <path d="M4 3h7v18H4zM13 7h7v14h-7z" fill="#fff"/>
      </svg>
    </div>
  </div>

  <!-- Big close button -->
  <div class="big-close">
    <svg viewBox="0 0 24 24" width="72" height="72">
      <path d="M6 6l12 12M18 6L6 18" stroke="#fff" stroke-width="3" stroke-linecap="round"/>
    </svg>
  </div>

  <!-- Home indicator -->
  <div class="home-indicator"></div>
</div>
</body>
</html>