bookiza
Version:
The book reification framework for the web
31 lines (25 loc) • 767 B
CSS
/* The CSS below is applied on all pages of the magazine.
* Simply set the path to background image on each page.CSS like so:
*
* Open `./manuscript/page-1/style.css` and paste just one line of code:
*
* body{
* background-image: url(path/to/your/magazine/assets/images/page-1-(1115x1143-pixels)-image-file.jpg);
* }
*
* to render the background-image specific to page number 1. And so on. A more detailed template without using magazine images can be developed separately. Contribution is invited!
*
*/
body, html {
height: 100vh;
width: 100vw;
margin: 0 0;
overflow: hidden;
background-repeat: no-repeat;
background-color: #000;
background-size: 100% 100%;
}
img {
border: 0;
-ms-interpolation-mode: bicubic;
}