1// $Id$
2// Subject: tiki media print definitions
3
4@media print {
5	// To prevent urls from being printed for all links
6	body a[href]:after {
7		content: none;
8	}
9
10	// print output should user smaller size than screen for better readability
11	body {
12		font-size: 12px;
13	}
14
15	h1, .h1 {
16		font-size: 26px;
17	}
18
19	h2, .h2 {
20		font-size: 20px;
21	}
22
23	h3, .h3 {
24		font-size: 14px;
25	}
26
27	h4, .h4 {
28		font-size: 14px;
29	}
30
31	.table > thead > tr > th, .table > tbody > tr > th, .table > tfoot > tr > th, .table > thead > tr > td, .table > tbody > tr > td, .table > tfoot > tr > td {
32		padding: 4px;
33	}
34}
35