-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
49 lines (47 loc) · 1.12 KB
/
index.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
<!DOCTYPE html>
<html>
<head>
<style>
html,
body {
height: 100%;
width: 100%;
}
.card-frame {
/* the dimnesions are minus a 5mm surrounding border */
width: 58.5mm;
height: 83.9mm;
border: 2.5mm solid black;
border-radius: 10px;
margin-right: 2mm;
margin-bottom: 2mm;
position: relative;
float: left;
}
.card-frame.with-pt::after {
content: "";
width: 25mm;
height: 11mm;
border: 2mm solid black;
border-top-left-radius: 5mm;
border-bottom-right-radius: 5mm;
bottom: -2.5mm;
right: -2.5mm;
position: absolute;
}
</style>
</head>
<body>
<div>
<div class="card-frame"></div>
<div class="card-frame"></div>
<div class="card-frame"></div>
<div class="card-frame"></div>
<div class="card-frame"></div>
<div class="card-frame"></div>
<div class="card-frame with-pt"></div>
<div class="card-frame with-pt"></div>
<div class="card-frame with-pt"></div>
</div>
</body>
</html>