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.

223 lines
4.1 KiB
CSS

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