]> BookStack Code Mirror - bookstack/blob - resources/views/pages/pdf.blade.php
Fixes #45
[bookstack] / resources / views / pages / pdf.blade.php
1 @extends('pages/export')
2
3 @section('head')
4     <style>
5         body {
6             font-size: 15px;
7             line-height: 1;
8         }
9
10         h1, h2, h3, h4, h5, h6 {
11             line-height: 1;
12         }
13
14         table {
15             max-width: 800px !important;
16             font-size: 0.8em;
17             width: auto !important;
18         }
19
20         table td {
21             width: auto !important;
22         }
23
24         .page-content img.align-left, .page-content img.align-right  {
25             float: none !important;
26             clear: both;
27             display: block;
28         }
29     </style>
30 @stop