Newer
Older
// PDF Letter classes
body {
font-family: Arial, sans-serif;
}
header {
height: 205px;
}
h1 {
font-size: 1em;
font-weight: bold;
}
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
.letter-unit {
position: absolute;
/* background-color: yellow; */
display: inline-block;
font-size: 0.9em;
left: 585px;
top: 0;
width: 285px;
height: 205px;
}
.letter-logo {
position: absolute;
top: 0;
left: 28px;
width: 235px;
}
.letter-title {
font-size: 1.1em;
font-weight: bold;
}
.letter-sender {
position: relative;
display: inline-block;
/* background-color: lime; */
font-size: 0.9em;
left: 118px;
top: 0;
width: 285px;
height: 250px;
}
.letter-receiver {
position: relative;
display: inline-block;
left: 111px;
width: 455px;
height: 250px;
/* background-color: red; */
}
.letter-date {
position: relative;
display: block;
/* background-color: blue; */
top: -43px;
left: 111px;
width: 750px;
}
.letter-no-break {
page-break-inside: avoid;
}
.letter-body {
margin-left: 111px;
width: 750px;
/* background-color: orange; */
}