You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

186 lines
3.3 KiB
CSS

/* @import url('https://pad.xpub.nl/p/sixx-print-css/export/txt'); */
4 months ago
@import "images.css"; /* Using a string */
4 months ago
:root {
4 months ago
/* --spot-color-1: #53018e; */
--spot-color-1: #000;
--baseline: 4mm;
--margin-left: 10mm;
}
4 months ago
@font-face {
font-family: 'Platypi';
src: url('../fonts/webfonts/Platypi-Regular.woff2');
font-weight: normal;
}
4 months ago
@font-face {
font-family: 'Platypi';
src: url('../fonts/webfonts/Platypi-Italic.woff2');
font-weight: italic;
4 months ago
}
@media print {
@page {
4 months ago
size: 130mm 180mm;
marks: crop; /* can also add cross */
bleed: 3mm;
4 months ago
margin: 25mm;
4 months ago
print-color-adjust: exact;
4 months ago
margin-top: 10mm;
margin-bottom: 15mm;
@bottom-center {
4 months ago
content: string(title, first);
position: relative;
text-align: left;
font-size: 7pt;
}
4 months ago
@left-top {
content: element(sidenote, all-once);
padding: 5mm;
4 months ago
}
4 months ago
@note-area {
content: element(sidenotes, all-once);
float: top right;
float-reference: page;
width: 42mm;
margin-right: -30mm;
}
4 months ago
}
4 months ago
@page:left {
/* bleed: 3mm 0 3mm 3mm; */
@bottom-left {
4 months ago
font-size: 7pt;
4 months ago
top: -3mm;
position: relative;
content: counter(page);
4 months ago
width: 5mm;
4 months ago
}
}
4 months ago
@page:right {
4 months ago
margin-top: 10mm;
margin-bottom: 15mm;
4 months ago
/* bleed: 3mm 3mm 3mm 0; */
@bottom-center {
text-align: right;
4 months ago
}
4 months ago
@bottom-right {
4 months ago
font-size: 7pt;
4 months ago
top: -3mm;
position: relative;
content: counter(page);
4 months ago
width: 5mm;
4 months ago
}
}
4 months ago
}
a {
4 months ago
text-decoration: none;
color: #000;
}
.sidenote {
4 months ago
position: note(sidenote);
margin-bottom: 10px;
text-align: left;
4 months ago
}
.margin-note {
4 months ago
font-size: 7pt;
line-height: 3mm;
text-align: left;
width: 35mm;
4 months ago
display: inline-block;
4 months ago
}
.code pre {
4 months ago
font-size: 0.8em;
line-height: 1.1;
white-space: pre-wrap;
}
#contenteo {
font-family: 'Platypi-Regular', 'platypi';
4 months ago
line-height: 1.3;
4 months ago
font-size: 9pt;
4 months ago
letter-spacing: -0.1px;
line-height: var(--baseline);
}
h1, h2, h3, h4, h5, h6 {
4 months ago
font-size: 1.2em;
line-height: 1;
4 months ago
string-set: title content(text);
4 months ago
}
h1 {
4 months ago
font-size: 1.8rem;
break-after: page;
4 months ago
/* margin: 0; */
/* padding: 0; */
4 months ago
}
h1#colophon {
4 months ago
break-after: unset;
margin-bottom: 25mm;
}
h6 {
4 months ago
font-size: 3rem;
break-before: right;
/* background-color: var(--spot-color-1); */
/* color: #fff; */
height: 176mm;
width: 133mm;
4 months ago
/* margin: -13mm 0 0 -30mm;
padding: 86mm 10mm 0; */
4 months ago
text-align: center;
}
ol, ul {
padding: 0;
}
.page-break {
4 months ago
break-after: page;
}
section {
4 months ago
break-after: page;
}
.section {
4 months ago
break-before: left;
page: section;
}
::selection {
4 months ago
background-color: var(--spot-color-1);
color: #ccc;
}
.toc {
4 months ago
break-before: right;
}
.toc ul {
4 months ago
list-style: none;
padding: 0;
margin: 0;
}
.toc-title {
4 months ago
break-before: none;
break-after: none;
}
.toc-title a::after {
4 months ago
content: target-counter(attr(href url), page);
float: right;
}