blob: c627250ddbab8858c2bcdc81a63eb731fa416c6d (
plain)
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
|
@media print {
html {
font-size: 11pt;
}
.no-print {
display: none;
}
}
@media screen {
.only-print {
display: none;
}
}
@page {
size: auto;
margin: 5mm 5mm 5mm 5mm;
}
td {
padding: 1vw;
}
div.right-align {
text-align: right;
}
table.main-table {
width: 100%;
}
td.left-cell {
width: 15vw;
}
td.center-cell {
text-align: center;
vertical-align: middle;
}
td.upper-cell {
vertical-align: top;
}
td.grey-ish-cell {
background-color: lightgray;
print-color-adjust: exact;
}
td.grey-cell {
background-color: gray;
print-color-adjust: exact;
}
img.passport-profile {
/* standard passport size: 128mm, 88mm */
width: 2.56vw;
height: 1.76vw;
}
h3.inline {
display: inline;
}
.qr-url {
font-size: smaller;
}
|