File size: 2,316 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 | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=1080, initial-scale=1.0">
<title>Book Cover - Real-Time Big Data Analytics</title>
<style>
body {
margin: 0;
padding: 0;
background: transparent;
font-family: "Helvetica Neue", Arial, sans-serif;
}
#render-target {
width: 1080px;
height: 2400px;
position: relative;
overflow: hidden;
background: #FFFFFF;
}
/* Top status bar */
.status-bar {
position: absolute;
top: 0;
left: 0;
width: 1080px;
height: 120px;
background: #000000;
}
/* Main content */
.content {
position: absolute;
top: 120px; /* below status bar */
left: 0;
width: 100%;
text-align: center;
}
.title {
margin-top: 280px;
color: #111;
font-weight: 800;
}
.title .tline {
font-size: 118px;
line-height: 1.08;
margin: 22px 0;
letter-spacing: -1px;
}
.author {
margin-top: 200px;
font-size: 72px;
font-weight: 700;
color: #8B2D2D;
}
.logo {
width: 640px;
height: 170px;
margin: 150px auto 30px auto;
background: #E0E0E0;
border: 1px solid #BDBDBD;
display: flex;
align-items: center;
justify-content: center;
color: #757575;
font-size: 40px;
letter-spacing: 1px;
}
.cities {
margin-top: 20px;
font-size: 42px;
color: #333333;
}
/* Bottom progress footer */
.footer {
position: absolute;
bottom: 40px;
left: 40px;
right: 40px;
font-size: 38px;
color: #757575;
}
.footer .left {
float: left;
}
.footer .right {
float: right;
}
</style>
</head>
<body>
<div id="render-target">
<div class="status-bar"></div>
<div class="content">
<div class="title">
<div class="tline">Real-Time Big Data</div>
<div class="tline">Analytics:</div>
<div class="tline">Emerging</div>
<div class="tline">Architecture</div>
</div>
<div class="author">Mike Barlow</div>
<div class="logo">[IMG: O'REILLY Logo]</div>
<div class="cities">Beijing 路 Cambridge 路 Farnham 路 K枚ln 路 Sebastopol 路 Tokyo</div>
</div>
<div class="footer">
<div class="left">1 page left in chapter</div>
<div class="right">19%</div>
</div>
</div>
</body>
</html> |