-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprint.css
114 lines (92 loc) · 1.59 KB
/
print.css
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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
/* rule for the pages */
@page {
margin: 1cm !important;
margin-left: 1cm;
margin-right: 1cm;
margin-top: 1cm;
margin-bottom: 1cm;
}
/* styles for the printed page */
@media print {
html {
padding: 0;
background-color: white;
}
body {
padding: 0;
letter-spacing: normal;
font-size: 12pt;
background-color: white;
}
button {
display: none;
}
input[type="checkbox"] {
border: 1px solid black;
}
/* hidding the arrows in the select elements */
select {
-moz-appearance: none;
-webkit-appearance: none;
font-size: 15pt;
}
select::-ms-expand {
display: none;
}
/* hidding arrows from number field */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
-webkit-appearance: none;
margin: 0;
}
input[type=number] {
-moz-appearance: textfield;
}
.print {
display: none;
}
.section-one-two {
margin-bottom: 2em;
padding: 0;
}
.section-one-two table {
width: 95%;
margin: 0 auto;
}
.section-one-two input[type="number"] {
text-align: left;
width: 30px;
}
#notes textarea {
width: 90%;
font-size: 9pt;
}
.section-three {
width: 100%;
padding: 0;
}
#canvas {
border: none;
}
.section-four {
flex-wrap: wrap;
gap: 4pt;
width: 100%;
}
#orthopedic-test {
width: 100%;
}
#orthopedic-test input[type="text"] {
width: 60%;
}
.section-four-table-container {
flex-flow: row-reverse;
width: 100%;
}
#ctl {
width: 70%;
}
#myos-tend-trigg {
width: 30%
}
}