AndroidCode / code /10028 /10028_5.html
yhzheng1031's picture
Add files using upload-large-folder tool
fa881a6 verified
<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>