File size: 4,654 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 | <html>
<head>
<meta charset="UTF-8">
<title>Reading App - About Wells</title>
<style>
body { margin: 0; padding: 0; background: transparent; font-family: "Georgia", serif; }
#render-target {
width: 1080px;
height: 2400px;
position: relative;
overflow: hidden;
background: #ffffff;
}
.content {
position: absolute;
left: 60px;
right: 60px;
top: 60px;
bottom: 280px; /* keep space for the bottom bar */
color: #111;
line-height: 1.6;
}
h2 {
margin: 0 0 30px 0;
font-size: 56px;
font-weight: 700;
}
p {
font-size: 40px;
margin: 0 0 40px 0;
}
.subhead {
font-size: 48px;
font-weight: 700;
margin: 20px 0 24px 0;
}
ul.book-list {
list-style-type: disc;
padding-left: 48px;
margin: 0 0 40px 0;
}
ul.book-list li {
font-size: 40px;
margin: 16px 0;
}
.link {
color: #2b6ef3;
font-style: italic;
}
.year {
color: #111;
}
.copyright {
font-size: 42px;
margin-top: 36px;
}
.copyright b { font-weight: 800; }
.copyright .blue { color: #2b6ef3; }
/* bottom info row */
.bottom-info {
position: absolute;
left: 30px;
right: 30px;
bottom: 250px;
display: flex;
justify-content: space-between;
color: #6b6b6b;
font-size: 32px;
}
/* gradient ad bar */
.ad-bar {
position: absolute;
left: 0;
right: 0;
bottom: 0;
height: 230px;
background: linear-gradient(90deg, #6ba95a, #3fa58b);
border-top-left-radius: 28px;
border-top-right-radius: 28px;
box-shadow: 0 -6px 18px rgba(0,0,0,0.15);
}
.ad-inner {
position: absolute;
left: 40px;
right: 40px;
top: 50%;
transform: translateY(-50%);
display: flex;
align-items: center;
justify-content: space-between;
}
.logo-pill {
width: 160px;
height: 120px;
border-radius: 18px;
background: rgba(255,255,255,0.15);
display: flex;
align-items: center;
justify-content: center;
color: #ffffff;
font-size: 96px;
font-weight: 700;
text-transform: lowercase;
}
.remove-btn {
background: #ffffff;
color: #1b5e4e;
border: none;
padding: 26px 44px;
border-radius: 60px;
font-size: 44px;
font-weight: 700;
box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}
</style>
</head>
<body>
<div id="render-target">
<div class="content">
<h2>About Wells:</h2>
<p>Herbert George Wells, better known as H. G. Wells, was an English writer best known for such science fiction novels as The Time Machine, The War of the Worlds, The Invisible Man and The Island of Doctor Moreau. He was a prolific writer of both fiction and non-fiction, and produced works in many different genres, including contemporary novels, history, and social commentary. He was also an outspoken socialist. His later works become increasingly political and didactic, and only his early science fiction novels are widely read today. Wells, along with Hugo Gernsback and Jules Verne, is sometimes referred to as "The Father of Science Fiction". Source: Wikipedia</p>
<div class="subhead">Also available on Feedbooks Wells:</div>
<ul class="book-list">
<li><span class="link">The Time Machine</span> <span class="year">(1895)</span></li>
<li><span class="link">A Modern Utopia</span> <span class="year">(1905)</span></li>
<li><span class="link">The Invisible Man</span> <span class="year">(1897)</span></li>
<li><span class="link">Tales of Space and Time</span> <span class="year">(1900)</span></li>
<li><span class="link">The Island of Dr. Moreau</span> <span class="year">(1896)</span></li>
<li><span class="link">The Food of the Gods and How It Came to Earth</span> <span class="year">(1904)</span></li>
<li><span class="link">The Sleeper Awakes</span> <span class="year">(1910)</span></li>
<li><span class="link">The Story of the Inexperienced Ghost</span> <span class="year">(1902)</span></li>
<li><span class="link">The First Men in the Moon</span> <span class="year">(1901)</span></li>
<li><span class="link">A Dream of Armageddon</span> <span class="year">(1901)</span></li>
</ul>
<p class="copyright"><b>Copyright:</b> This work is available for countries where copyright is <span class="blue">Life+70</span> and in the USA.</p>
</div>
<div class="bottom-info">
<div>100%</div>
<div>1 of 199</div>
<div>15:47</div>
</div>
<div class="ad-bar">
<div class="ad-inner">
<div class="logo-pill">m</div>
<button class="remove-btn">REMOVE ADS</button>
</div>
</div>
</div>
</body>
</html> |