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

  /* Status bar */
  .status-bar {
    position: absolute;
    top: 0;
    left: 0;
    width: 1080px;
    height: 120px;
    background: #000000;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 30px;
    box-sizing: border-box;
    letter-spacing: 1px;
    font-family: "Helvetica Neue", Arial, sans-serif;
  }
  .status-left, .status-right {
    display: flex;
    align-items: center;
    gap: 24px;
  }
  .time {
    font-size: 40px;
    font-weight: 600;
  }
  .tiny-dot {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.6);
    background: rgba(255,255,255,0.15);
  }

  /* Top tools bar */
  .tools-bar {
    position: absolute;
    top: 120px;
    left: 0;
    width: 1080px;
    height: 100px;
    background: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 90px;
  }
  .tool-icon {
    width: 60px;
    height: 60px;
  }
  .tool-icon svg { width: 100%; height: 100%; fill: #ffffff; }

  /* Page content */
  .page {
    position: absolute;
    top: 220px;
    left: 0;
    width: 1080px;
    height: 1780px;
    box-sizing: border-box;
    padding: 60px 80px 0 80px;
    color: #222;
  }
  .page p {
    font-size: 36px;
    line-height: 1.75;
    margin: 0 0 32px 0;
  }
  .spacer {
    height: 850px;
  }
  .chapter {
    text-align: center;
    font-size: 56px;
    font-weight: 700;
    letter-spacing: 1px;
    margin: 0 0 40px 0;
  }

  /* Reading controls */
  .progress-wrap {
    position: absolute;
    bottom: 220px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
  }
  .progress {
    width: 600px;
    height: 12px;
    background: #cfcfcf;
    border-radius: 8px;
    position: relative;
  }
  .thumb {
    position: absolute;
    top: -10px;
    left: 380px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #777;
    border: 2px solid #555;
  }

  .bottom-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 1080px;
    height: 160px;
    background: #222;
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 0 80px;
    box-sizing: border-box;
    color: #fff;
    font-family: "Helvetica Neue", Arial, sans-serif;
  }
  .bb-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    font-size: 26px;
    color: #ddd;
  }
  .bb-icon {
    width: 64px;
    height: 64px;
  }
  .bb-icon svg { width: 100%; height: 100%; fill: #f6f6f6; }

  /* Simple right icons */
  .status-right svg { fill: #fff; }
</style>
</head>
<body>
<div id="render-target">

  <!-- Status bar -->
  <div class="status-bar">
    <div class="status-left">
      <div class="time">12:07</div>
      <div class="tiny-dot"></div>
      <div class="tiny-dot"></div>
      <div class="tiny-dot"></div>
      <div class="tiny-dot"></div>
      <div class="tiny-dot" style="opacity:.6;"></div>
    </div>
    <div class="status-right">
      <!-- Bell (outline) -->
      <svg width="46" height="46" viewBox="0 0 24 24">
        <path d="M12 22a2 2 0 0 0 2-2h-4a2 2 0 0 0 2 2zm6-6V9a6 6 0 1 0-12 0v7l-2 2v1h18v-1l-2-2z"></path>
      </svg>
      <!-- WiFi -->
      <svg width="46" height="46" viewBox="0 0 24 24">
        <path d="M12 18.5l-1.5 1.5 1.5 1.5 1.5-1.5-1.5-1.5zm-4-3 1.5 1.5 2.5-2.5 2.5 2.5L16 15.5 12 11.5 8 15.5zm-4-3 1.5 1.5L12 6.5l7.5 7.5L21 12.5 12 3.5 3 12.5z"></path>
      </svg>
      <!-- Battery -->
      <svg width="62" height="46" viewBox="0 0 24 24">
        <path d="M20 7h1a1 1 0 0 1 1 1v8a1 1 0 0 1-1 1h-1v-10z"></path>
        <rect x="3" y="6" width="16" height="12" rx="2" ry="2" fill="#fff"></rect>
        <rect x="5" y="8" width="11" height="8" fill="#000"></rect>
      </svg>
    </div>
  </div>

  <!-- Top tools bar -->
  <div class="tools-bar">
    <!-- Checkmark -->
    <div class="tool-icon">
      <svg viewBox="0 0 24 24">
        <path d="M9 16.2L4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z"></path>
      </svg>
    </div>
    <!-- Undo -->
    <div class="tool-icon">
      <svg viewBox="0 0 24 24">
        <path d="M12 5a7 7 0 0 1 7 7h-6l3.5 3.5-1.4 1.4L10 12l5.1-5.1 1.4 1.4L13 10h6A9 9 0 0 0 12 3L6 9h4V5z"></path>
      </svg>
    </div>
    <!-- Redo -->
    <div class="tool-icon">
      <svg viewBox="0 0 24 24">
        <path d="M12 5a7 7 0 0 0-7 7h6L7.5 15.5l1.4 1.4L14 12 8.9 6.9 7.5 8.3 11 12H5a9 9 0 0 1 9-9l6 6h-4V5z"></path>
      </svg>
    </div>
    <!-- Search -->
    <div class="tool-icon">
      <svg viewBox="0 0 24 24">
        <path d="M15.5 14h-.8l-.3-.3a6.5 6.5 0 1 0-.9.9l.3.3v.8l5 5 1.5-1.5-5-5zm-6 0A4.5 4.5 0 1 1 14 9.5 4.5 4.5 0 0 1 9.5 14z"></path>
      </svg>
    </div>
    <!-- More (vertical dots) -->
    <div class="tool-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>
    </div>
  </div>

  <!-- Page content -->
  <div class="page">
    <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 class="spacer"></div>

    <div class="chapter">TWO</div>

    <p>They were watching the Saturday-afternoon movie when Mr. Fergussen came to take her to Mrs. Deardorff’s office. It was a movie about table manners called “How to Act at Dinnertime,” so she didn’t mind leaving.</p>
    <p>But she was frightened. Had they found out that she never went to chapel? That she saved pills? Her legs trembled and her knees felt funny as Mr. Fergussen, wearing his white pants and white T‑shirt, walked her down the long hallway, down the green linoleum with black cracks in it.</p>
    <p>Her thick brown shoes squeaked on the linoleum, and she squinted her eyes under the bright hall lights as they passed the doors towards Mrs. Deardorff’s office.</p>
  </div>

  <!-- Reading progress slider -->
  <div class="progress-wrap">
    <div class="progress">
      <div class="thumb"></div>
    </div>
  </div>

  <!-- Bottom control bar -->
  <div class="bottom-bar">
    <div class="bb-item">
      <div class="bb-icon">
        <!-- "Aa" icon (two letters) -->
        <svg viewBox="0 0 24 24">
          <text x="2" y="17" font-size="12" fill="#fff" font-family="Georgia">Aa</text>
        </svg>
      </div>
      <span>Aa</span>
    </div>
    <div class="bb-item">
      <div class="bb-icon">
        <!-- Alternate size "Aa" -->
        <svg viewBox="0 0 24 24">
          <text x="3" y="16" font-size="12" fill="#fff" font-family="Georgia">Aa</text>
        </svg>
      </div>
      <span>Size</span>
    </div>
    <div class="bb-item">
      <div class="bb-icon">
        <!-- Pencil -->
        <svg viewBox="0 0 24 24">
          <path d="M3 17.25V21h3.75L17.81 9.94l-3.75-3.75L3 17.25zM20.71 7.04a1 1 0 0 0 0-1.41L18.37 3.3a1 1 0 0 0-1.41 0l-1.34 1.34 3.75 3.75 1.34-1.35z"></path>
        </svg>
      </div>
      <span>Annotate</span>
    </div>
    <div class="bb-item">
      <div class="bb-icon">
        <!-- Bookmark -->
        <svg viewBox="0 0 24 24">
          <path d="M6 3h12v18l-6-4-6 4z"></path>
        </svg>
      </div>
      <span>Bookmark</span>
    </div>
    <div class="bb-item">
      <div class="bb-icon">
        <!-- Note -->
        <svg viewBox="0 0 24 24">
          <rect x="4" y="4" width="16" height="16" rx="2" ry="2"></rect>
          <path d="M7 8h10M7 12h10M7 16h7" stroke="#222" stroke-width="1.2" fill="none"></path>
        </svg>
      </div>
      <span>Notes</span>
    </div>
    <div class="bb-item">
      <div class="bb-icon">
        <!-- Text icon (T) -->
        <svg viewBox="0 0 24 24">
          <text x="8" y="17" font-size="14" fill="#fff" font-family="Georgia">T</text>
        </svg>
      </div>
      <span>Font</span>
    </div>
    <div class="bb-item">
      <div class="bb-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.1 4a6.1 6.1 0 0 0-.2-1.5l2-1.6-2-3.5-2.5 1a6.7 6.7 0 0 0-2.6-1.5l-.4-2.7H11l-.4 2.7a6.7 6.7 0 0 0-2.6 1.5l-2.5-1-2 3.5 2 1.6A6.1 6.1 0 0 0 3.9 12c0 .5.1 1 .2 1.5l-2 1.6 2 3.5 2.5-1a6.7 6.7 0 0 0 2.6 1.5l.4 2.7h5.2l.4-2.7a6.7 6.7 0 0 0 2.6-1.5l2.5 1 2-3.5-2-1.6c.1-.5.2-1 .2-1.5z"></path>
        </svg>
      </div>
      <span>Settings</span>
    </div>
  </div>

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