forked from marcbachmann/node-html-pdf
-
Notifications
You must be signed in to change notification settings - Fork 0
/
businesscard.html
97 lines (86 loc) · 1.9 KB
/
businesscard.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
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
<html>
<head>
<meta charset="utf8">
<title>SuitArt Business Card</title>
<style>
html, body {
margin: 0;
padding: 0;
font-family: 'Sackers Gothic Std';
font-weight: 500;
font-size: 7px;
background: rgb(241,241,241);
-webkit-print-color-adjust: exact;
box-sizing: border-box;
}
.page {
position: relative;
height: 90mm;
width: 50mm;
display: block;
background: black;
page-break-after: auto;
margin: 50px;
overflow: hidden;
}
@media print {
body {
background: black;
}
.page {
margin: 0;
height: 100%;
width: 100%;
}
}
.page.first {
border-left: 5px solid green;
}
.bottom {
position: absolute;
left: 5mm;
right: 5mm;
bottom: 5mm;
}
.group {
margin-top: 3mm;
}
.line {
color: white;
position: relative;
}
.center {
text-align: center;
}
.logo {
position: relative;
width: 80%;
left: 10%;
top: 15%;
}
</style>
</head>
<body>
<div class="page">
<div class="bottom">
<div class="line">Marc Bachmann</div>
<div class="line">cto</div>
<div class="group">
<div class="line">p: +41 00 000 00 00</div>
<div class="line">github: marcbachmann</div>
</div>
<div class="group">
<div class="line">suitart ag</div>
<div class="line">räffelstrasse 25</div>
<div class="line">8045 zürich</div>
</div>
</div>
</div>
<div class="page">
<img class="logo" src="{{image}}">
<div class="bottom">
<div class="line center">8045 zürich</div>
</div>
</div>
</body>
</html>