| <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> |