blob: 305b00b6ee2ff49ccef55ddafef8044069cd423a (
plain)
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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
|
/* style.css — Professional styling for ISA reference HTML (used by wkhtmltopdf) */
body {
font-family: "Times New Roman", Times, serif;
font-size: 11pt;
line-height: 1.5;
color: #1a1a1a;
max-width: 7in;
margin: 0 auto;
padding: 1in 0.5in;
}
h1 {
font-size: 24pt;
text-align: center;
margin-top: 2in;
margin-bottom: 0.3in;
page-break-before: always;
}
h1:first-of-type {
margin-top: 3in;
page-break-before: avoid;
}
.subtitle {
text-align: center;
font-size: 16pt;
color: #555;
margin-bottom: 0.5in;
}
h2 {
font-size: 16pt;
border-bottom: 2px solid #333;
padding-bottom: 4pt;
margin-top: 0.5in;
}
h3 {
font-size: 13pt;
margin-top: 0.3in;
}
h4 {
font-size: 11pt;
font-style: italic;
margin-top: 0.2in;
}
table {
width: 100%;
border-collapse: collapse;
margin: 0.2in 0;
font-size: 9.5pt;
}
th, td {
border: 1px solid #999;
padding: 4pt 6pt;
text-align: left;
vertical-align: top;
}
th {
background-color: #e8e8e8;
font-weight: bold;
}
tr:nth-child(even) {
background-color: #f6f6f6;
}
code {
font-family: "Courier New", Courier, monospace;
font-size: 9.5pt;
background-color: #f0f0f0;
padding: 1pt 3pt;
border-radius: 2pt;
}
pre {
font-family: "Courier New", Courier, monospace;
font-size: 9pt;
background-color: #f8f8f8;
border: 1px solid #ddd;
padding: 8pt;
overflow-x: auto;
line-height: 1.3;
}
pre code {
background: none;
padding: 0;
}
/* Page breaks */
section, .chapter {
page-break-before: always;
}
/* Tables of contents */
#TOC {
page-break-after: always;
}
#TOC ul {
list-style: none;
padding-left: 0;
}
#TOC li {
margin: 4pt 0;
}
/* Header and footer */
@page {
@top-center {
content: element(header);
font-size: 9pt;
color: #888;
}
@bottom-center {
content: counter(page);
font-size: 9pt;
}
}
@media print {
body {
padding: 0;
}
table {
page-break-inside: avoid;
}
h2, h3 {
page-break-after: avoid;
}
}
|