-
Notifications
You must be signed in to change notification settings - Fork 11
/
print.css
125 lines (105 loc) · 1.58 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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
@page{
margin:1cm;
width:29.7cm;
}
/** Print in lanscape Format**/
/*
#screen{
-webkit-transform: rotate(-90deg);
-moz-transform:rotate(-90deg);
filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
transform:rotate(-90deg);
}
.slide{
page-break-after:always;
}
*/
/*****/
body{
width: auto!important;
margin: auto!important;
font-size: 10pt;
background-color: #fff;
color: #333;
}
*{
background:none;
color:#333;
}
.slide{
/*page-break-after:always;*/ /*one slide per page*/
page-break-inside:avoid; /*slide after each other. a slide can't be cur into two pages*/
padding:1cm;
opacity:1;
position:relative;
min-height:20em;
display:block!important;
}
.modeplan .slide,
.slide {
border-bottom:2px solid #ddd;
border-top:0;
}
#nav,
#sommaire,
.noprint,
.slide.noprint{
display:none!important;
}
a {
color: #333!important;
text-decoration:none!important;
}
a[href]:after {
content: " [" attr(href) "]";
font-size:11pt;
color:#666;
}
a[href^="#"]:after {
content: "";
}
a[title]:after {
content: " (" attr(title) ")";
font-size:9pt;
font-style:italic;
color:#666;
}
pre code{
line-height:2em;
padding:0;
}
pre{
border:1pt solid #ccc;
padding:0.3cm;
}
code,kbd{
border:1px solid #ccc;
}
.PlanIndex{
text-align:right;
float:right;
margin:0;
}
.PlanIndex span{
font-size:7pt;
border:none;
}
h2{
padding-left:0.2cm;
}
h3{
padding:0;
font-size:12pt;
font-weight:bold;
}
#banner{
position:fixed;
top:0!important;
}
h1.main-title{
font-size:12pt;
font-family:sans-serif;
position:fixed;
right:0;
top:0;
}