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.

164 lines
3.2 KiB
CSS

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