This repository has been archived by the owner on Sep 10, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprint.css
181 lines (160 loc) · 3.26 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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
@media print {
@page {
size: letter portrait;
margin: 0.3in;
}
.page {
display: flex;
flex-direction: column;
height: 99%;
padding: 0;
border: 0;
overflow: hidden;
}
/* page 1 */
#cover-image {
width: 100%;
}
#page-2, #page-3 {
flex-wrap: nowrap;
}
#print-map {
width: 100%;
margin-top: 2rem;
}
h3 {
}
.header {
border-bottom: 1px solid gray;
text-align: right;
width: 100%;
height: 6mm;
}
.footer {
display: flex;
flex-direction: row;
justify-content: space-between;
margin-top: auto;
}
.footer .sponsor {
display: flex;
flex-direction: column;
margin-right: 20mm;
flex-grow: 1;
align-items: flex-end;
color: #14A2F4;
}
.footer .sponsor .logo img {
height: 0.5in;
}
.footer .sponsor .resource span {
border-top: 1px solid #DADADA;
}
.footer .sponsor .resource img {
height: 0.15in;
display: inline-block;
vertical-align: middle;
}
.print-row {
display: flex;
}
.stage {
font-weight: bolder;
}
.five-steps {
font-size: 4.5mm;
text-align: center;
font-weight: bold;
margin-top: 7mm;
margin-bottom: 7mm;
}
.left-column {
flex: 0 0 3in;
width: 3in;
flex-direction: column;
}
.right-column {
margin-right: auto;
flex-grow: 1;
flex-direction: column;
padding-left: 4mm;
}
.left-column .stat-box {
display: flex;
height: 1in;
margin-top: 0.15in;
border-bottom: 2px solid #020B19;
}
.left-column .stat-box .stat-value {
font-weight: bold;
text-align: right;
display: flex;
align-self: flex-end;
justify-content: flex-end;
font-size: 8mm;
line-height: 9mm;
width: 50%;
}
.left-column .stat-box.description {
background-color: #F3F3F3;
padding: 0.15in;
height: 2.75in;
margin-top: 0;
line-height: 0.7cm;
font-size: 0.45cm;
border-bottom: none;
}
.left-column .bottom-description {
text-align: right;
}
/* Chart SVG Styles */
path {
stroke: #3e6f6a;
stroke-width: 2px;
fill: none;
}
.tick line {
stroke: #333;
}
.tick.current {
font-weight: bold;
}
.points-current circle {
fill: #333;
}
path.scenario {
stroke: #8e1212;
}
.points-scenario circle {
fill: #333;
}
.area-current {
fill: #30928D;
stroke-width: 0;
}
.area-scenario {
fill: #923034;
stroke-width: 0;
}
.area.scenario {
fill: #923034;
stroke-width: 0;
}
.xaxis-label,
.yaxis-label {
}
.xaxis path,
.yaxis path {
fill: none;
stroke: #ccc;
stroke-width: 1px;
shape-rendering: crispEdges;
}
.bar {
fill: #923034;
}
.bar[data-layer="Present"],
.bar[data-layer="2010 Mangroves"] {
fill: #30928D;
}
}