File size: 7,037 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
<html>
<head>
<meta charset="UTF-8">
<title>Mobile Reader UI</title>
<style>
  body { margin:0; padding:0; background:transparent; }
  #render-target {
    width:1080px; height:2400px;
    position:relative; overflow:hidden;
    background:#0f0f10;
    font-family:Arial, Helvetica, sans-serif;
    color:#fff;
  }

  /* Status bar */
  .status-bar {
    height:120px;
    background:#121212;
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:0 34px;
    font-size:42px;
    letter-spacing:0.5px;
  }
  .status-right {
    display:flex; align-items:center; gap:22px;
    font-size:28px;
  }
  .dot {
    width:18px; height:18px; background:#d9d9d9; border-radius:50%;
    opacity:0.85;
  }
  .tiny-icon {
    width:38px; height:38px; display:flex; align-items:center; justify-content:center;
  }
  .tiny-icon svg { width:32px; height:32px; fill:none; stroke:#eaeaea; stroke-width:2.5; }

  /* Top app bar with actions */
  .top-toolbar{
    height:140px; background:#1a1a1a;
    display:flex; align-items:center; justify-content:space-between;
    padding:0 28px;
  }
  .toolbar-left, .toolbar-right{ display:flex; align-items:center; gap:34px; }
  .tool-icon{
    width:72px; height:72px;
    display:flex; align-items:center; justify-content:center;
    color:#fff;
  }
  .tool-icon svg{ width:54px; height:54px; stroke:#e6e6e6; stroke-width:3; fill:none; }

  /* Page area */
  .page {
    position:relative;
    width:920px;
    height:1240px;
    margin:22px auto 0 auto;
    background:#ffffff;
    box-shadow:0 0 0 1px rgba(0,0,0,0.06);
    padding:70px 90px;
  }
  .book-text {
    color:#222;
    font-family:Georgia, 'Times New Roman', serif;
    font-size:36px;
    line-height:56px;
  }
  .book-text p{ margin:0 0 40px 0; text-indent:40px; }
  .finished-mark {
    position:absolute; right:40px; bottom:36px;
    color:#6b6b6b; font-size:26px; letter-spacing:1px;
    text-transform:uppercase;
  }

  /* Keyboard */
  .keyboard {
    position:absolute; left:0; bottom:0;
    width:100%; height:900px;
    background:#212121; color:#e2e2e2;
    border-top:1px solid #2c2c2c;
  }
  .kb-title{
    text-align:center; padding-top:24px; padding-bottom:12px;
    font-size:44px; letter-spacing:2px; font-weight:600;
  }
  .mic-btn{
    position:absolute; right:30px; top:26px;
    width:92px; height:92px; border-radius:50%;
    background:#bcd1f4; display:flex; align-items:center; justify-content:center;
  }
  .mic-btn svg{ width:50px; height:50px; fill:none; stroke:#1a2a54; stroke-width:3; }

  .key-rows { padding:22px 28px; }
  .kb-row{
    display:flex; align-items:center; justify-content:space-between;
    margin-bottom:22px;
  }
  .key{
    width:85px; height:120px; border-radius:16px;
    background:#2a2a2a; display:flex; align-items:center; justify-content:center;
    font-size:40px; color:#e0e0e0;
  }
  .key.wide { width:165px; }
  .space { flex:1; height:120px; border-radius:16px; background:#2a2a2a; margin:0 14px; }
  .bottom-controls{
    display:flex; align-items:center; justify-content:space-between;
    padding:0 28px; margin-top:6px;
  }
  .bottom-indicator{
    position:absolute; bottom:22px; left:50%;
    transform:translateX(-50%);
    width:380px; height:12px; background:#e6e6e6; border-radius:6px; opacity:0.85;
  }
</style>
</head>
<body>
<div id="render-target">

  <!-- Status Bar -->
  <div class="status-bar">
    <div>12:08</div>
    <div class="status-right">
      <div class="dot"></div>
      <div class="dot"></div>
      <div class="dot"></div>
      <div class="tiny-icon">
        <svg viewBox="0 0 24 24">
          <rect x="2" y="6" width="18" height="12" rx="2"></rect>
          <rect x="20" y="9" width="2" height="6"></rect>
        </svg>
      </div>
      <div class="tiny-icon">
        <svg viewBox="0 0 24 24">
          <path d="M3 12c4-4 14-4 18 0"></path>
          <path d="M6 12c3-3 9-3 12 0" opacity="0.7"></path>
          <circle cx="12" cy="12" r="1.2"></circle>
        </svg>
      </div>
    </div>
  </div>

  <!-- Top Action Bar -->
  <div class="top-toolbar">
    <div class="toolbar-left">
      <div class="tool-icon" title="check">
        <svg viewBox="0 0 24 24"><path d="M5 13l5 5 9-12"/></svg>
      </div>
      <div class="tool-icon" title="undo">
        <svg viewBox="0 0 24 24"><path d="M9 7H5l4-4"/><path d="M5 7c0 7 7 10 14 6" opacity="0.7"/></svg>
      </div>
      <div class="tool-icon" title="redo">
        <svg viewBox="0 0 24 24"><path d="M15 7h4l-4-4"/><path d="M19 7c0 7-7 10-14 6" opacity="0.5"/></svg>
      </div>
    </div>
    <div class="toolbar-right">
      <div class="tool-icon" title="search">
        <svg viewBox="0 0 24 24"><circle cx="10" cy="10" r="6"/><path d="M15 15l6 6"/></svg>
      </div>
      <div class="tool-icon" title="more">
        <svg viewBox="0 0 24 24"><circle cx="12" cy="5" r="2.2"/><circle cx="12" cy="12" r="2.2"/><circle cx="12" cy="19" r="2.2"/></svg>
      </div>
    </div>
  </div>

  <!-- White Reading Page -->
  <div class="page">
    <div class="book-text">
      <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="finished-mark">finished</div>
  </div>

  <!-- Keyboard -->
  <div class="keyboard">
    <div class="kb-title">FINISHED</div>
    <div class="mic-btn">
      <svg viewBox="0 0 24 24">
        <rect x="9" y="4" width="6" height="10" rx="3"></rect>
        <path d="M5 11c0 5 6 6 6 6s6-1 6-6" />
        <path d="M12 17v4" />
      </svg>
    </div>

    <div class="key-rows">
      <div class="kb-row">
        <div class="key">q</div><div class="key">w</div><div class="key">e</div><div class="key">r</div><div class="key">t</div>
        <div class="key">y</div><div class="key">u</div><div class="key">i</div><div class="key">o</div><div class="key">p</div>
      </div>
      <div class="kb-row">
        <div class="key">a</div><div class="key">s</div><div class="key">d</div><div class="key">f</div><div class="key">g</div>
        <div class="key">h</div><div class="key">j</div><div class="key">k</div><div class="key">l</div>
      </div>
      <div class="kb-row">
        <div class="key wide">shift</div>
        <div class="key">z</div><div class="key">x</div><div class="key">c</div><div class="key">v</div><div class="key">b</div><div class="key">n</div><div class="key">m</div>
        <div class="key wide"></div>
      </div>
      <div class="kb-row">
        <div class="key wide">?123</div>
        <div class="key">,</div>
        <div class="key"></div>
        <div class="space"></div>
        <div class="key">.</div>
        <div class="key wide"></div>
      </div>
    </div>

    <div class="bottom-indicator"></div>
  </div>

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