2024-07-14 21:43:34 +00:00
|
|
|
@page {
|
|
|
|
margin: 1cm;
|
|
|
|
}
|
|
|
|
|
|
|
|
:root {
|
2024-07-15 06:03:28 +00:00
|
|
|
--border-color-base: #aaa !important;
|
2024-07-15 06:07:25 +00:00
|
|
|
--border-width-base: 1pt;
|
|
|
|
--border-width-thick: 2pt;
|
2024-07-15 06:08:50 +00:00
|
|
|
--font-size-base: 12pt;
|
2024-07-14 22:09:53 +00:00
|
|
|
|
|
|
|
&.citizen-feature-custom-font-size-clientpref-small {
|
2024-07-15 06:08:50 +00:00
|
|
|
--font-size-base: 11pt;
|
2024-07-14 22:09:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
&.citizen-feature-custom-font-size-clientpref-large {
|
2024-07-15 06:08:50 +00:00
|
|
|
--font-size-base: 13pt;
|
2024-07-14 22:09:53 +00:00
|
|
|
}
|
2024-07-14 21:43:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Hide unnessecary elements for printing
|
|
|
|
.noprint,
|
|
|
|
.citizen-header,
|
|
|
|
.citizen-sitenotice-container,
|
2021-03-07 18:11:15 +00:00
|
|
|
.page-actions,
|
2024-07-14 21:43:34 +00:00
|
|
|
#citizen-page-header-sticky-sentinel,
|
|
|
|
#citizen-page-header-sticky-placeholder,
|
2024-07-14 22:05:03 +00:00
|
|
|
.citizen-page-footer,
|
2024-07-14 21:43:34 +00:00
|
|
|
.citizen-page-sidebar,
|
2023-02-28 21:58:35 +00:00
|
|
|
#footer-desc,
|
2021-03-07 19:03:10 +00:00
|
|
|
#footer-places,
|
2024-07-14 21:43:34 +00:00
|
|
|
.citizen-overflow-nav {
|
2024-07-14 23:41:41 +00:00
|
|
|
display: none !important;
|
2019-12-02 21:55:35 +00:00
|
|
|
}
|
|
|
|
|
2021-03-07 18:11:15 +00:00
|
|
|
a {
|
|
|
|
color: #000;
|
2024-07-15 06:03:28 +00:00
|
|
|
border-bottom: 1pt solid var( --border-color-base );
|
2019-12-02 21:55:35 +00:00
|
|
|
}
|
|
|
|
|
2024-07-14 21:43:34 +00:00
|
|
|
table,
|
2024-07-14 21:44:10 +00:00
|
|
|
img,
|
|
|
|
svg {
|
2024-07-14 21:43:34 +00:00
|
|
|
break-inside: avoid;
|
2019-12-02 22:33:39 +00:00
|
|
|
}
|
|
|
|
|
2024-07-14 21:43:34 +00:00
|
|
|
/* HACK: Move footer to the top */
|
|
|
|
.citizen-page-container {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
}
|
|
|
|
|
|
|
|
.citizen-footer {
|
|
|
|
order: -1;
|
|
|
|
padding-top: var( --space-md );
|
|
|
|
padding-bottom: var( --space-md );
|
|
|
|
margin-bottom: var( --space-md );
|
2024-07-15 06:03:28 +00:00
|
|
|
border-bottom: 1pt solid var( --border-color-base );
|
2024-07-14 21:43:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.citizen-footer__container {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: space-between;
|
|
|
|
}
|
|
|
|
|
|
|
|
#footer-tagline {
|
|
|
|
font-size: 9pt;
|
|
|
|
}
|
|
|
|
|
|
|
|
#firstHeading {
|
|
|
|
margin: 0;
|
2019-12-02 22:23:19 +00:00
|
|
|
}
|
|
|
|
|
2023-02-28 21:58:35 +00:00
|
|
|
.printfooter {
|
2024-07-14 21:43:34 +00:00
|
|
|
margin-top: 1em;
|
|
|
|
font-size: 9pt;
|
2024-07-15 06:03:28 +00:00
|
|
|
border-top: 1pt solid var( --border-color-base );
|
|
|
|
}
|
|
|
|
|
|
|
|
.wikitable {
|
|
|
|
margin: 1em 0;
|
|
|
|
border-collapse: collapse;
|
|
|
|
border: 1pt solid var( --border-color-base );
|
|
|
|
}
|
|
|
|
|
|
|
|
.wikitable th,
|
|
|
|
.wikitable td {
|
|
|
|
padding: var( --space-xs ) var( --space-sm );
|
|
|
|
border: 1pt solid var( --border-color-base );
|
2019-12-02 22:41:41 +00:00
|
|
|
}
|