blob: d0f5bbe4ab7943f019540a5be80cf60fcdd405ef (
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
|
@page {
size: a4 portrait;
margin: 2cm 1cm 2.5cm 1cm;
background-image: url("images/ishtar-bg.jpg");
background-repeat: no-repeat;
@frame footer {
-pdf-frame-content: pdffooter;
bottom: 1cm;
margin-left: 1cm;
margin-right: 1cm;
height: 1cm;
}
@frame header {
-pdf-frame-content: pdfheader;
top: 1.2cm;
margin-left: 1cm;
margin-right: 1cm;
height: 1.5cm;
}
@bottom-center {
content: counter(page) "/" counter(pages);
}
}
label{
display:inline;
font-weight:bold;
}
table{
margin:10px;
width:100%;
border: none;
border-collapse:collapse;
}
caption, h3{
display:block;
text-align:center;
font-size:1.5em;
}
a img {
display: block;
margin-left: auto;
margin-right: auto;
padding:0.5em;
}
th{
text-align:center;
border-bottom:2px solid #922;
}
td{
margin:0;
padding:0;
padding-top:4px;
text-align:right;
border:1px solid #EEE;
border-top:none;
font-size:0.9em;
}
.link{
display:None;
}
.string{
text-align:left;
}
.no_items{
text-align:center;
font-style:italic;
}
.head{
display:none;
}
.tool{
display:none;
}
caption, hr, .tool-left, .tool-right, .display_details, .display_details_inline{
display: None;
color: transparent;
background-color: transparent;
border-color: transparent;
}
p{
margin:0.2em;
}
td{
background-color: #ddd;
}
#pdffooter, #pdfheader{
text-align:center;
}
#pdfheader{
font-weight:bold;
width:100%;
border-bottom:1px solid #922;
position: fixed;
top: -0.5cm;
}
.window-refs{
text-align:center;
padding:0;
margin:0;
font-size: 0.9em;
width:100%;
display:block;
}
|