summary refs log tree commit diff
path: root/print.css
blob: d2cba074b52594fb460d437dcc65e1e2a3885960 (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
body {
  font-family: sans-serif;
  font-size: 16px;
}
a,
a:visited {
	color: inherit;
	text-decoration: none;
}
/* HTML5 semantic tags: some (older) browsers display this inline by default */
article, figcaption, figure, header, main {
	display: block;
}
/* hide navigation menus when printing */
nav,
#menuwrap,
.hidden {
	display: none;
}
table, img {
	border: 0;
}
table tr td {
	padding: 2px 10px 2px 0px;
}
pre {
	margin: 0;
}
code {
	border: 3px solid #aaa;
	display: block;
	overflow-x: auto;
	padding: 5px;
	word-wrap: normal;
}