-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpdf-viewer.css
More file actions
56 lines (44 loc) · 741 Bytes
/
Copy pathpdf-viewer.css
File metadata and controls
56 lines (44 loc) · 741 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
50
51
52
53
54
55
56
body {
font-family: 'Karma', serif;
}
/* Utility Classes */
.border-pox, p {
max-width: 800px;
}
.space-items {
display: flex;
align-items: center;
justify-content: space-between;
}
.border-box {
padding: 15px;
margin: 20px 0;
border: 1px solid black;
}
.border-box--green {
background-color: #B0BFB3;
border-color: #28502E;
}
.border-box--blue {
background-color: #DDF3FF;
border-color: #215774;
}
.divider {
margin-top: 10px;
border-bottom: 1px solid black;
}
/* Styling for PDF pages */
.pdf__information h3 {
margin: 0;
}
.pdf__buttons {
margin: 10px;
}
.pdf-page {
display: flex;
flex-wrap: wrap;
justify-content: space-evenly;
}
.pdf-page__filter__description {
margin-left: 15px;
}