/*!
 * HTML-Sheets-of-Paper (https://github.com/delight-im/HTML-Sheets-of-Paper)
 * Copyright (c) delight.im (https://www.delight.im/)
 * Licensed under the MIT License (https://opensource.org/licenses/MIT)
 */

 @import "sheets-of-paper.css";

 .page {
	 /* Styles for better appearance on screens only -- are reset to defaults in print styles later */
 
	 /* Reflect the paper width in the screen rendering (must match size from @page rule) */
	 width: 21.6cm;
	 /* Reflect the paper height in the screen rendering (must match size from @page rule) */
	 min-height: 22.9cm;
 
	 /* Reflect the actual page margin/padding on paper in the screen rendering (must match margin from @page rule) */
	 /* These sizes relflect a narrow word (.5 left .5 right margin) */
	 
	 padding-left: 30pt;
	 padding-top: 72pt;
	 padding-right: 30pt;
	 padding-bottom: 72pt;
 }
 /* Use CSS Paged Media to switch from continuous documents to sheet-like documents with separate pages */
 @page {
	 /* You can only change the size, margins, orphans, widows and page breaks here */
 
	 /* Paper size and page orientation */
	 size: letter portrait;
 
	 /* Margin per single side of the page */
	 margin-left: 45pt;
	 margin-top: 72pt;
	 margin-right: 45pt;
	 margin-bottom: 72pt;
 }
 
 .pager {
	 background-image: repeating-linear-gradient(to bottom, transparent, transparent 22.9cm, silver 22.9cm, silver 22.92cm);
   }
 
 