88 lines
1.9 KiB
CSS
88 lines
1.9 KiB
CSS
#cert-data {
|
|
string-set: certname attr(data-name),
|
|
certversion attr(data-version),
|
|
certapprovaldate attr(data-approvaldate);
|
|
/* Can't be `display: none;`, as it breaks string-set */
|
|
visibility: hidden;
|
|
position: absolute;
|
|
bottom: 0px;
|
|
}
|
|
|
|
.checklist li::marker {
|
|
content: "□\00A0";
|
|
padding-right: 1em;
|
|
}
|
|
|
|
.no-break {
|
|
break-inside: avoid;
|
|
}
|
|
|
|
@media print {
|
|
body {
|
|
font-size: 10pt;
|
|
}
|
|
|
|
#firstHeading,
|
|
#siteSub,
|
|
.printfooter,
|
|
.no-print,
|
|
.toc,
|
|
.print-warning,
|
|
#contentSub {
|
|
display: none !important;
|
|
}
|
|
|
|
h1, h2, h3, h4 {
|
|
padding-top: 0em !important;
|
|
margin-top: 0em !important;
|
|
break-before: auto !important;
|
|
}
|
|
|
|
.qrlite-result img {
|
|
width: 1.5in;
|
|
}
|
|
|
|
/* Turn off mediawiki's added text for mailto links */
|
|
a[href^="mailto:"]::after {
|
|
content: none !important;
|
|
}
|
|
|
|
/* Add link target as text, except mailto links */
|
|
a:not([href^="mailto:"])::after {
|
|
content: " [" attr(href) "]";
|
|
color: initial;
|
|
text-decoration: none;
|
|
}
|
|
|
|
@page {
|
|
size: letter portrait;
|
|
margin: 1in;
|
|
|
|
@top-left {
|
|
content: string(certname);
|
|
font-size: 1.2em;
|
|
color: #444;
|
|
vertical-align: bottom;
|
|
padding-bottom: 0.2em;
|
|
}
|
|
|
|
@top-right {
|
|
content: '';
|
|
background-image: url("https://claremontmakerspace.org/wp-content/uploads/2018/06/cms_logo.png");
|
|
background-repeat: no-repeat;
|
|
background-position: bottom;
|
|
background-size: 100%;
|
|
width: 7em;
|
|
}
|
|
|
|
@bottom-left {
|
|
content: string(certversion) " - " string(certapprovaldate);
|
|
color: #444;
|
|
}
|
|
|
|
@bottom-right-corner {
|
|
content: counter(page);
|
|
}
|
|
}
|
|
}
|