-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyles.css
More file actions
488 lines (420 loc) · 10.3 KB
/
Copy pathstyles.css
File metadata and controls
488 lines (420 loc) · 10.3 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
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
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
/* Custom styles for Revegetation Projects website */
/* Global font consistency */
body {
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
font-size: 16px;
line-height: 1.6;
}
h1, h2, h3, h4, h5, h6 {
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
font-weight: 600;
}
/* Ensure consistent font rendering across all pages */
.quarto-title-block,
.quarto-title-meta,
.page-layout-article {
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}
/* Table responsiveness improvements */
.table-responsive {
overflow-x: visible !important;
-webkit-overflow-scrolling: touch;
margin-bottom: 1rem;
width: 100% !important;
max-width: none !important;
min-width: 100% !important;
}
/* Full width table containers */
.container-fluid,
.container,
.quarto-container {
max-width: none !important;
width: 100% !important;
padding-left: 15px;
padding-right: 15px;
}
/* Ensure main content area uses full width */
main {
max-width: none !important;
width: 100% !important;
}
/* Full width page layout */
.page-layout-article,
.quarto-title-block,
.quarto-title-meta {
max-width: none !important;
width: 100% !important;
}
/* Remove any Bootstrap container constraints */
.row {
margin-left: 0 !important;
margin-right: 0 !important;
}
.col-12, .col-md-12, .col-lg-12 {
padding-left: 15px !important;
padding-right: 15px !important;
}
/* Full width for DT tables */
.dataTables_wrapper {
width: 100% !important;
max-width: none !important;
}
/* Force full width on all table containers */
.table-responsive,
.dataTables_wrapper,
.dataTables_scroll,
.dataTables_scrollBody,
table,
.dataTables_wrapper .dataTables_scrollBody table,
.dataTables_wrapper table {
width: 100% !important;
max-width: none !important;
min-width: 100% !important;
}
/* Override any Bootstrap or Quarto width constraints */
.quarto-container-fluid,
.quarto-container,
.container-fluid,
.container,
.quarto-container-fluid .container,
.quarto-container .container {
max-width: none !important;
width: 100% !important;
padding-left: 15px !important;
padding-right: 15px !important;
}
/* Force full width on all possible container classes */
[class*="container"],
[class*="quarto-container"],
[class*="page-layout"] {
max-width: none !important;
width: 100% !important;
}
/* DT table improvements */
.dataTables_wrapper {
overflow-x: auto;
}
.dataTables_wrapper .dataTables_scroll {
overflow-x: auto;
}
/* Ensure tables fit comfortably on page */
table {
width: 100% !important;
max-width: 100% !important;
min-width: 100% !important;
table-layout: auto !important;
}
/* Override Bootstrap table defaults */
.table {
width: 100% !important;
max-width: none !important;
min-width: 100% !important;
margin-bottom: 0 !important;
}
/* Improve table cell padding for better readability */
.table td, .table th {
padding: 0.5rem 0.75rem;
white-space: normal;
word-wrap: break-word;
overflow-wrap: break-word;
}
/* Allow some table cells to wrap when needed */
.table td.wrap-text {
white-space: normal;
word-wrap: break-word;
}
/* DT table specific improvements */
.DTFC_LeftWrapper table,
.DTFC_RightWrapper table {
border-collapse: collapse;
}
/* Force DT tables to use full width with compact styling */
.dataTables_wrapper {
width: 100% !important;
max-width: none !important;
overflow: visible !important;
min-width: 1000px !important;
font-size: 0.85rem !important;
}
.dataTables_wrapper table {
font-size: 0.85rem !important;
line-height: 1.2 !important;
}
.dataTables_wrapper th,
.dataTables_wrapper td {
padding: 4px 6px !important;
font-size: 0.85rem !important;
white-space: nowrap !important;
}
/* Text wrapping for mitigation points table */
.dataTables_wrapper td.dt-wrap,
.dataTables_wrapper th.dt-wrap {
white-space: normal !important;
word-wrap: break-word !important;
word-break: break-word !important;
overflow-wrap: break-word !important;
max-width: 300px !important;
}
/* Ensure all cells in mitigation tables wrap */
#csv-points-table_wrapper td,
#csv-points-table_wrapper th,
#shapefile-polygons-table_wrapper td,
#shapefile-polygons-table_wrapper th {
white-space: normal !important;
word-wrap: break-word !important;
word-break: break-word !important;
overflow-wrap: break-word !important;
max-width: 400px !important;
}
/* Allow table cells to expand vertically */
#csv-points-table_wrapper table,
#shapefile-polygons-table_wrapper table {
table-layout: auto !important;
}
#csv-points-table_wrapper td,
#shapefile-polygons-table_wrapper td {
vertical-align: top !important;
padding: 8px !important;
}
/* Quarto column-screen layout with margin */
.column-screen {
width: 95% !important;
max-width: none !important;
margin: 0 auto !important;
padding: 0 20px !important;
}
.dataTables_wrapper .dataTables_scroll {
width: 100% !important;
max-width: none !important;
overflow: visible !important;
min-width: 1000px !important;
}
.dataTables_wrapper .dataTables_scrollBody {
width: 100% !important;
max-width: none !important;
overflow: visible !important;
min-width: 1000px !important;
}
.dataTables_wrapper table {
width: 100% !important;
max-width: none !important;
table-layout: fixed !important;
min-width: 1000px !important;
}
/* Improve button spacing in DT tables */
.dataTables_wrapper .dt-buttons {
margin-bottom: 1rem;
}
.dataTables_wrapper .dt-buttons .btn {
margin-right: 0.5rem;
margin-bottom: 0.5rem;
}
/* Better mobile responsiveness */
@media (max-width: 768px) {
.table-responsive {
font-size: 0.8rem;
}
.dataTables_wrapper {
font-size: 0.8rem;
}
.dataTables_wrapper .dataTables_length,
.dataTables_wrapper .dataTables_filter {
margin-bottom: 0.5rem;
}
}
/* Print/PDF specific styles */
@media print {
.table-responsive {
overflow: visible !important;
width: 100% !important;
max-width: 100% !important;
}
.dataTables_wrapper {
overflow: visible !important;
width: 100% !important;
max-width: 100% !important;
}
table {
width: 100% !important;
max-width: 100% !important;
table-layout: fixed !important;
font-size: 0.8rem !important;
}
.table td, .table th {
padding: 0.25rem 0.5rem !important;
white-space: normal !important;
word-wrap: break-word !important;
overflow-wrap: break-word !important;
font-size: 0.8rem !important;
}
/* Hide DT controls for print */
.dataTables_length,
.dataTables_filter,
.dataTables_info,
.dataTables_paginate,
.dt-buttons {
display: none !important;
}
/* Ensure full width containers for print */
.container,
.container-fluid,
.quarto-container,
.quarto-container-fluid {
max-width: 100% !important;
width: 100% !important;
padding: 0 !important;
margin: 0 !important;
}
}
/* Improve histogram container */
.histogram-container {
margin: 2rem 0;
padding: 1rem;
background-color: #f8f9fa;
border-radius: 0.5rem;
border: 1px solid #e9ecef;
}
/* Better figure styling */
.figure {
margin: 2rem 0;
text-align: center;
}
.figure img {
max-width: 100%;
height: auto;
border-radius: 0.375rem;
box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}
/* Improve code block styling */
pre {
background-color: #f8f9fa;
border: 1px solid #e9ecef;
border-radius: 0.375rem;
padding: 1rem;
overflow-x: auto;
}
/* Better alert styling */
.alert {
border-radius: 0.5rem;
border: none;
box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}
/* Custom navbar styling for blue theme */
.navbar {
background-color: #2E86AB !important;
}
.navbar-brand {
display: flex;
align-items: center;
color: white !important;
}
.navbar-nav .nav-link {
color: white !important;
}
.navbar-nav .nav-link:hover {
color: #e9ecef !important;
}
.navbar-text {
color: white !important;
}
.navbar-brand img {
height: 40px;
max-height: 40px;
width: auto;
margin-right: 10px;
object-fit: contain;
background-color: white;
border-radius: 4px;
padding: 2px;
/* Add white background to make logo visible on dark navbar */
}
/* Better card styling */
.card {
border-radius: 0.5rem;
box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
margin-bottom: 1.5rem;
}
/* Improve sidebar styling */
.sidebar {
background-color: #f8f9fa;
border-right: 1px solid #e9ecef;
}
/* Better link styling */
a {
color: #2E86AB;
text-decoration: none;
}
a:hover {
color: #1e5a73;
text-decoration: underline;
}
/* Improve button styling */
.btn {
border-radius: 0.375rem;
font-weight: 500;
}
/* Better form styling */
.form-control {
border-radius: 0.375rem;
border: 1px solid #ced4da;
}
.form-control:focus {
border-color: #2E86AB;
box-shadow: 0 0 0 0.2rem rgba(46, 134, 171, 0.25);
}
/* Footer styling */
footer {
margin-top: 3rem;
padding: 2rem 0;
border-top: 1px solid #e9ecef;
background-color: #f8f9fa;
text-align: center;
color: #6c757d;
font-size: 0.9rem;
}
/* Data disclaimer styling */
.alert-disclaimer {
background-color: #fff3cd;
border: 1px solid #ffeaa7;
color: #856404;
border-radius: 0.5rem;
padding: 1rem;
margin: 2rem 0;
}
/* Hide Quarto navigation envelope artifacts */
#quarto-navigation-envelope {
display: none !important;
visibility: hidden !important;
height: 0 !important;
overflow: hidden !important;
}
.quarto-markdown-envelope-contents {
display: none !important;
visibility: hidden !important;
height: 0 !important;
overflow: hidden !important;
}
/* Hide any elements with quarto-markdown-envelope in their class */
[class*="quarto-markdown-envelope"] {
display: none !important;
visibility: hidden !important;
height: 0 !important;
overflow: hidden !important;
}
/* Force tables to break out of containers and use full viewport width */
.full-width-table {
width: 100vw !important;
max-width: 100vw !important;
margin-left: calc(-50vw + 50%) !important;
margin-right: calc(-50vw + 50%) !important;
position: relative !important;
left: 50% !important;
right: 50% !important;
transform: translateX(-50%) !important;
}
.full-width-table .dataTables_wrapper {
width: 100vw !important;
max-width: 100vw !important;
margin-left: calc(-50vw + 50%) !important;
margin-right: calc(-50vw + 50%) !important;
}