-
Notifications
You must be signed in to change notification settings - Fork 1
/
postcard_front.html
70 lines (60 loc) · 1.19 KB
/
postcard_front.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
<html>
<head>
<meta charset="UTF-8">
<title>Lob.com Thank You 4x6 Postcard Template Front</title>
<style>
*, *:before, *:after {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
@font-face {
font-family: 'DragonIsComing';
font-style: normal;
font-weight: 400;
src: url('https://s3-us-west-2.amazonaws.com/public.lob.com/fonts/dragonIsComing/Dragon+is+coming.otf') format('opentype');
}
body {
width: 6.25in;
height: 4.25in;
margin: 0;
padding: 0;
}
#safe-area {
position: absolute;
width: 5.875in;
height: 3.875in;
left: 0.1875in;
top: 0.1875in;
text-align: center;
font-family: 'DragonIsComing';
font-size: 2in;
color: white;
padding-top: .6in;
}
#outer {
width: 6.25in;
height: 4.25in;
background-color: #a2d1f8;
}
#inner {
width: 5.5in;
height: 3.5in;
position: absolute;
left: .375in;
top: .375in;
border: .03in solid white;
}
</style>
</head>
<body>
<div id="outer">
<div id="inner">
</div>
</div>
<!-- do not put text outside of the safe area -->
<div id="safe-area">
Thank You
</div>
</body>
</html>