blob: 28712e5c3f40619ab2855eff427fc071f77264bb (
plain) (
blame)
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
|
html, body {
padding: 0;
margin: 0;
word-wrap: break-word;
}
body {
/* Use margin so that children can safely use width=100% */
margin: 10px;
}
h1,h2,h3 {
color: #7f7f7f;
}
th {
color: #7f7f7f;
text-align: left;
font-weight: normal;
vertical-align: top;
}
.header {
color: #7f7f7f;
}
.pre {
font-family: monospace;
}
.part-container {
width: 100%;
background: #FFF;
margin-top: 2px;
margin-bottom: 3px;
border-width: 0px;
border-style: none;
}
.part-container-inner-margin {
margin: 8px;
}
/***** PRINTING *******/
.printing-header {
margin-bottom: 20px;
}
.printing-header h1,
.attachments-list h1 {
font-size: 20px;
}
.printing-header th {
text-align: right;
font-weight: bold;
}
.attachments-list th {
font-weight: bold;
}
|