-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprint.css
More file actions
49 lines (41 loc) · 697 Bytes
/
print.css
File metadata and controls
49 lines (41 loc) · 697 Bytes
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
@media print {
@page {
font-size: 11pt;
margin: 1cm;
size: landscape;
}
::placeholder {
color: transparent !important;
text-shadow: none !important;
}
body {
background: var(--bg-print);
padding: 0;
}
input,
textarea {
background: transparent !important;
border: none !important;
color: black !important;
padding: 2px 0 !important;
}
input[type='number'] {
appearance: textfield;
}
#app {
border: none;
max-width: 100% !important;
padding: 0;
width: 100%;
}
.approach-row {
background: none !important;
border-bottom: 1px solid var(--border);
}
.no-print {
display: none !important;
}
.print-only {
display: block !important;
}
}