This repository was archived by the owner on May 12, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
123 lines (105 loc) · 1.96 KB
/
Copy pathstyle.css
File metadata and controls
123 lines (105 loc) · 1.96 KB
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
115
116
117
118
119
120
121
122
123
:root {
font-family: 'Times New Roman', Times, serif;
font-size: 12pt;
background: #999;
}
body {
background: white;
width: 210mm;
height: 297mm;
margin: 0 auto;
padding: 3mm;
box-sizing: border-box;
}
#main {
display: flex;
flex-flow: row nowrap;
align-items: stretch;
justify-content: center;
height: 100%;
}
#main>* {
flex: 1;
}
.column {
display: flex;
flex-flow: column nowrap;
align-items: stretch;
justify-content: stretch;
}
.column .colspan {
display: flex;
flex-flow: row nowrap;
align-items: start;
gap: 15px;
margin: auto 2.5%;
}
label {
font-variant: small-caps;
}
input:not([type]),
input[type=text] {
border: none;
border-bottom: solid 1pt #999;
font-size: 14pt;
width: 100%;
}
small {
color: #999;
}
.box {
margin: 3px;
padding: 3px;
border: solid 1px black;
border-radius: 3px;
display: flex;
flex-flow: column nowrap;
}
label.under {
display: flex;
flex-flow: column-reverse nowrap;
font-size: 10pt;
width: 95%;
margin: 0 auto;
}
label.beside {
font-size: 12pt;
}
label.beside input {
width: 50px;
}
label.textarea {
display: flex;
flex-flow: column nowrap;
width: 98%;
height: 100%;
}
label.textarea textarea {
resize: vertical;
width: 100%;
height: 100%;
min-height: 120px;
border: none;
background: repeat url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='200pt' height='15pt' viewBox='0 0 200 15'><line x1='0' y1='14' x2='200' y2='14' stroke='%23999' stroke-width='1' /></svg>");
line-height: 15pt;
}
.box:last-child textarea {
resize: none;
}
@media print {
@page {
page-orientation: upright;
margin: 0;
}
:root {
background: unset;
width: 100%;
height: 100%;
}
body {
width: 100%;
height: 100%;
margin: 0;
padding: 3mm;
}
}