-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtemplate.html
72 lines (62 loc) · 1.17 KB
/
template.html
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
<!doctype html>
<html>
<head>
<meta charset="utf-8" />
<title>Global Fund MASS Distribution Template</title>
<style>
INJECT_NORMALIZE_CSS
</style>
<style>
INJECT_PAPER_CSS
</style>
<style>
.sheet {
display: grid;
grid-template-columns: repeat(2, 1fr);
grid-template-rows: repeat(6, 16.7%);
margin: 0;
padding:0;
margin-left:auto;
margin-right:auto;
}
.item {
border : 0;
display: grid;
grid-template-columns: 1fr 2fr 1fr;
grid-template-rows: 15% 70% 15%;
}
.item-logo-ima {
grid-column: 1;
grid-row: 1;
}
.item-top {
grid-column: 2;
grid-row: 1;
margin-top:5px;
}
.item-logo-pnlp {
grid-column: 3;
grid-row: 1;
}
.item-qrcode {
grid-column: 2;
grid-row: 2;
}
.item-hrcode {
grid-column-start: 1;
grid-column-end: 4;
grid-row: 3;
font-weight: bold;
font-size: 1.5rem;
margin-bottom:5px;
}
.sheet * {
text-align:center;
}
@page { size : A4; margin: 0; }
</style>
</head>
<body class="A4">
INJECT_CONTENT
</body>
</html>