-
Notifications
You must be signed in to change notification settings - Fork 50
/
Copy path4x6_front.html
53 lines (48 loc) · 1.2 KB
/
4x6_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
<html>
<head>
<meta charset="UTF-8">
<link href="https://fonts.googleapis.com/css?family=Open+Sans" rel="stylesheet" type="text/css">
<title>Lob.com Sample 4x6 Postcard Front</title>
<style>
*, *:before, *:after {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
body {
width: 6.25in;
height: 4.25in;
margin: 0;
padding: 0;
/* If using an image, the background image should have dimensions of 1875x1275 pixels. */
background-image: url(https://s3-us-west-2.amazonaws.com/public.lob.com/assets/beach.jpg);
background-size: 6.25in 4.25in;
background-repeat: no-repeat;
}
#safe-area {
position: absolute;
width: 5.875in;
height: 3.875in;
left: 0.1875in;
top: 0.1875in;
background-color: rgba(255,255,255,0.5);
}
.text {
margin: 10px;
font-family: 'Open Sans';
font-weight: 400;
font-size: 40px;
color: white;
text-shadow: 2px 2px black;
}
</style>
</head>
<body>
<div id="safe-area">
<!-- All text should appear within the safe area. -->
<div class="text">
The frosted white box is the safe area. Do not put text outside this box.
</div>
</div>
</body>
</html>