File size: 3,850 Bytes
0e1717f
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=1080, initial-scale=1.0">
<title>Reader 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: #E7D3B6; /* sepia paper */
    border-radius: 0;
  }

  /* Status bar */
  .status-bar {
    position: absolute;
    top: 0;
    left: 0;
    width: 1080px;
    height: 120px;
    background: #000;
    color: #fff;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
    font-size: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
    box-sizing: border-box;
  }
  .status-icons {
    display: flex;
    align-items: center;
    gap: 28px;
  }
  .icon-circle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 3px solid #fff;
    opacity: 0.9;
  }
  .icon-battery {
    width: 28px;
    height: 36px;
    border: 3px solid #fff;
    position: relative;
    border-radius: 4px;
  }
  .icon-battery::after {
    content: "";
    position: absolute;
    right: -8px;
    top: 8px;
    width: 6px;
    height: 18px;
    background: #fff;
    border-radius: 2px;
  }

  /* Reading content */
  .page {
    position: absolute;
    left: 0;
    top: 120px;
    right: 0;
    bottom: 0;
    padding: 60px 72px 160px 72px;
    box-sizing: border-box;
  }
  .content {
    color: #7A5B3E;
    font-size: 48px;
    line-height: 1.55;
    letter-spacing: 0.4px;
  }
  .content p {
    margin: 28px 0;
    text-indent: 36px;
  }
  .content p.big-indent {
    text-indent: 0;
  }
  .small-caps {
    font-variant: small-caps;
    letter-spacing: 2px;
  }

  /* Overlay - Font size control */
  .font-overlay {
    position: absolute;
    top: 860px;
    left: 170px;
    width: 740px;
    height: 220px;
    background: #3d3d3f;
    border-radius: 22px;
    box-shadow: 0 18px 40px rgba(0,0,0,0.35);
    color: #fff;
  }
  .font-overlay .title {
    position: absolute;
    top: 26px;
    left: 40px;
    font-size: 36px;
    letter-spacing: 2px;
    color: #cfcfd4;
  }
  .font-overlay .controls {
    position: absolute;
    bottom: 38px;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 0 46px;
  }
  .circle-btn {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    border: 6px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 70px;
    line-height: 1;
  }
  .font-size-value {
    font-size: 64px;
    color: #eaeaf0;
    opacity: 0.95;
  }

  /* Bottom progress */
  .progress {
    position: absolute;
    left: 40px;
    right: 40px;
    bottom: 150px;
    height: 10px;
    background: #d2bea3;
    border-radius: 6px;
  }
  .progress::before,
  .progress::after {
    content: "";
    position: absolute;
    width: 20px;
    height: 20px;
    background: #E7D3B6;
    border-radius: 50%;
    top: -5px;
  }
  .progress::before { left: -12px; }
  .progress::after { right: -12px; }

  /* Home indicator */
  .home-indicator {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    width: 520px;
    height: 16px;
    background: #ffffff;
    opacity: 0.9;
    border-radius: 10px;
  }
</style>
</head>
<body>
<div id="render-target">
  <div class="status-bar">
    <div>8:16</div>
    <div class="status-icons">
      <div class="icon-circle"></div>
      <div class="icon-battery"></div>
    </div>
  </div>

  <div class="page">
    <div class="content">
      <p class="big-indent">
        ket, or a watch to take out of it, and, burning with curiosity, she ran