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