forked from devsecopsmaturitymodel/DevSecOps-MaturityModel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprint.css
102 lines (83 loc) · 1.53 KB
/
print.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
@media print {
@page {
size: landscape
}
}
@media print {
h1, h2, h3, h4, h5 {
font-family: times new roman, times, serif;
text-align: justify;
margin-top: 10px;
margin-bottom: 5px;
font-weight: bold;
}
thead {
display: table-header-group;
}
div,
ul li {
font-size: 12px;
word-break: break-all;
}
ul {
padding-left: 5px;
}
h1 {
font-size: 16px;
}
h2 {
font-size: 15px;
}
h3 {
font-size: 14px;
}
h4 {
font-size: 12px;
}
b, a {
font-size: 10px;
}
div {
font-size: 10px;
}
.nav {
display: none;
}
a[href]:after {
content: none !important;
}
table {
table-layout: fixed;
word-wrap: break-word;
}
@page {
size: auto; /* auto is the initial value */
/* this affects the margin in the printer settings */
margin: 5mm 5mm 5mm 5mm;
}
body {
/* this affects the margin on the content before sending to printer */
margin: 0px;
/*
width: 21cm;
height: 29.7cm;
*/
}
.popoverdetails, .extra {
display: none;
}
body > table tr > th:nth-child(1) {
width: 12%;
}
body > table tr > th:nth-child(2) {
width: 12%;
}
table {
page-break-inside: avoid;
}
hr {
display:none;
margin-top:6px;
margin-bottom:6px;
}
}