-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathclg.css
87 lines (72 loc) · 1.41 KB
/
clg.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
/* CSS variables for anything *not* related to pagedjs layout */
:root {
--orange: #ff6900;
--charcoal: #212721;
--number-font-size: 180pt;
--name-font-size: 28pt;
}
* {
box-sizing: border-box;
}
@page {
/* 8x5 in */
size: 203.2mm 127mm;
margin-top: 2mm;
margin-right: 2mm;
margin-bottom: 2mm;
margin-left: 2mm;
bleed: 0mm;
}
/* Pagedjs generated content */
.pagedjs_page_content > div {
height: 100%;
}
.page {
/* Break .page */
page-break-after: page;
/* Full height */
height: 100%;
display: flex;
flex-direction: column;
justify-content: space-between;
}
.page__header {
border-bottom: 6pt solid var(--orange);
padding-bottom: 2pt;
font-size: 11pt;
color: var(--charcoal);
display: flex;
flex-direction: row;
justify-content: space-between;
align-items: baseline;
}
.page__center {
margin: auto 0;
text-align: center;
font-family: 'averta-web', sans-serif;
color: var(--charcoal);
}
.page__number {
font-size: var(--number-font-size);
line-height: var(--number-font-size);
font-weight: 800;
letter-spacing: .035em;
}
.page__name {
font-size: var(--name-font-size);
line-height: var(--name-font-size);
}
.page__footer {
border-top: 2pt solid var(--charcoal);
}
.page__logos {
display: flex;
flex-direction: row;
justify-content: center;
align-items: center;
gap: 10pt;
}
.page__logos > img {
max-height: 75pt;
width: auto;
}