-
-
Notifications
You must be signed in to change notification settings - Fork 118
Expand file tree
/
Copy pathpdf.css
More file actions
56 lines (56 loc) · 1.09 KB
/
pdf.css
File metadata and controls
56 lines (56 loc) · 1.09 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
.vp-pdf-grid-box {
display: grid;
width: 100%;
height: 100%;
grid-row-gap: 5px;
grid-template-rows: 100px 100px;
}
.vp-pdf-prepare-box {
display: grid;
grid-template-columns: 50% 50%;
align-items: baseline;
align-content: center;
border: 1px solid var(--vp-border-gray-color);
border-radius: 5px;
box-sizing: border-box;
padding: 15px;
}
.vp-pdf-link {
color: var(--vp-highlight-color);
}
.vp-pdf-install-btn{
margin-left: 7px;
}
.vp-pdf-check-btn {
display: inline-block;
margin-left: 5px;
}
.vp-pdf-import-btn {
margin-left: 10px;
}
.vp-pdf-show-box {
display: grid;
grid-row-gap: 10px;
border: 1px solid var(--vp-border-gray-color);
border-radius: 5px;
box-sizing: border-box;
padding: 15px;
align-content: space-evenly;
}
.vp-pdf-df-box {
display: grid;
grid-template-columns: 95px auto;
grid-row-gap: 5px;
align-items: baseline;
}
.vp-pdf #vp_pdfVariable {
width: 62%;
height: 30px;
}
.vp-pdf-input {
width: 62%;
}
.vp-pdf-run-btn {
width: 112px !important;
margin-left: 5px;
}