File size: 3,867 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 | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=1080, initial-scale=1.0">
<title>E-Reader Mock</title>
<style>
body { margin: 0; padding: 0; background: transparent; }
#render-target {
width: 1080px;
height: 2400px;
position: relative;
overflow: hidden;
background: #E4D1B6; /* warm sepia page */
font-family: Georgia, "Times New Roman", serif;
color: #634C35;
}
/* Status bar */
.status-bar {
position: absolute;
left: 0; top: 0;
width: 1080px; height: 110px;
background: #0B0B0B;
color: #FFFFFF;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
font-size: 38px;
}
.status-left {
position: absolute; left: 38px; top: 26px;
display: flex; align-items: center; gap: 20px;
}
.status-left .time { font-weight: 600; letter-spacing: 1px; }
.status-left .dot {
width: 28px; height: 28px; border-radius: 50%;
background: #9AA0A6; display: inline-block;
}
.status-left .bell {
width: 36px; height: 36px;
border-radius: 50%; border: 3px solid #bbb;
display: inline-flex; align-items: center; justify-content: center;
color: #bbb; font-size: 22px;
}
.status-right {
position: absolute; right: 34px; top: 26px;
display: flex; align-items: center; gap: 26px;
font-size: 36px;
}
/* Reading content */
.page {
position: absolute;
left: 58px; right: 58px;
top: 140px; bottom: 150px;
overflow: hidden;
}
.content {
column-count: 1;
font-size: 46px;
line-height: 1.55;
letter-spacing: 0.2px;
}
.content p { margin: 0 0 30px 0; text-indent: 32px; }
.content p.first { text-indent: 0; }
/* Floating font size overlay */
.overlay {
position: absolute;
left: 150px;
top: 830px;
width: 780px; height: 240px;
background: #2F2F2F;
border-radius: 22px;
box-shadow: 0 18px 40px rgba(0,0,0,0.35);
border: 6px solid #1F1F1F;
color: #D8D8D8;
display: flex;
align-items: center;
justify-content: space-between;
padding: 26px 40px;
}
.overlay .title {
position: absolute;
left: 40px; top: 24px;
font-weight: 700; letter-spacing: 2px;
color: #BEBEBE; font-size: 34px;
}
.overlay .control {
width: 120px; height: 120px;
border-radius: 50%;
border: 8px solid #8E8E8E;
display: flex; align-items: center; justify-content: center;
background: #3A3A3A;
color: #FFFFFF; font-size: 70px; font-weight: 700;
}
.overlay .value {
font-size: 64px; color: #E6E6E6; font-weight: 600;
}
/* Bottom indicators */
.homebar {
position: absolute;
left: 50%; transform: translateX(-50%);
bottom: 34px; width: 420px; height: 14px;
background: #FFFFFF; opacity: 0.75;
border-radius: 10px;
}
.prog-dot {
position: absolute; bottom: 84px; width: 18px; height: 18px; border-radius: 50%;
background: #9E8D75;
}
.prog-dot.right { right: 28px; }
.prog-dot.left { left: 28px; }
</style>
</head>
<body>
<div id="render-target">
<!-- Status Bar -->
<div class="status-bar">
<div class="status-left">
<div class="time">8:16</div>
<span class="dot"></span>
<div class="bell">🔔</div>
</div>
<div class="status-right">
<div>◆</div>
<div>⚡</div>
</div>
</div>
<!-- Reading page -->
<div class="page">
<div class="content">
<p class="first">ross the field after it and was just in time to see it pop down a large rab‑bit‑hole, under the hedge. In another moment, down went Alice after it!</p>
<p>The rabbit‑hole went straight on like a tunnel for some way and then dipped suddenly down, so suddenly that Alice had not a moment to think about stopping herself before she fo‑und herself falling down what see‑med to be a< |