blob: 52757708de27a3b058c1db1db3d1bfb8e643dcfa (
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
70
71
72
73
74
75
76
|
@font-face {
font-family: 'Source Serif';
src: url(./SourceSerif4-Semibold.otf);
}
#print-area {
border-color: #aaa;
margin-bottom: 1em;
margin-top: 2em;
padding: 1em;
}
.details {
display: flex;
align-items: center;
}
.qrcode {
margin-bottom: 1em;
max-width: 175px;
}
.hidden {
display: none;
}
textarea {
background-color: #fff;
border: solid 1px #ddd;
font-family: 'Source Serif', serif !important;
font-size: 1.2em !important;
margin-bottom: 0;
height: 40px !important;
min-height: 0px !important;
overflow: hidden;
resize: none;
}
textarea#password {
height: 60px !important;
}
hr {
margin-top: 0;
}
button {
height: 50px;
width: 180px;
}
#settings {
margin-bottom: 1em;
padding: 1em;
}
#settings label span {
margin-right: 8px;
}
@media print {
body * {
visibility: hidden;
}
#print-area,
#print-area * {
visibility: visible;
}
#print-area {
border-style: dashed;
box-shadow: none;
}
#print-area {
position: absolute;
left: 0;
top: 0;
}
}
|