UnfoldingCSS:StyleBox: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
No edit summary |
||
Line 5: | Line 5: | ||
/* ***** FONTS ****** */ | /* ***** FONTS ****** */ | ||
--title-font: | --title-font: Serif; | ||
--body-font: | --body-font: Sanserif; | ||
--code-font: | --code-font: Monospace; | ||
--quote-font: | --quote-font: Serif; | ||
--footnote-font: | --footnote-font: Sanserif; | ||
--page-number-font: | --page-number-font: Monospace; | ||
Revision as of 10:07, 7 June 2024
:root { /* ***** PAGE OPTIONS **** */ --page-size: A4; --color-paper: HoneyDew; /* ***** FONTS ****** */ --title-font: Serif; --body-font: Sanserif; --code-font: Monospace; --quote-font: Serif; --footnote-font: Sanserif; --page-number-font: Monospace; /* ****** COLOR ****** */ --text-color: MidnightBlue; /* ***** CONTENT ****** */ --PUB-title: 'PUB Title'; } @page { size: var(--page-size); margin-top: 1.5cm; margin-bottom: 1.5cm; } @page:first{ @right-middle { content: none; } @right-top { content: none; } } @page:right { margin-left: 35mm; margin-right: 20mm; @right-middle { content: counter(page); font-family: var(--page-number-font); } @right-top { content: var(--PUB-title); font-family: var(--title-font); margin-right: 0.8cm; writing-mode: vertical-rl; text-orientation: mixed; } } @page:left { margin-right: 35mm; margin-left: 20mm; @left-middle { content: counter(page); font-family: var(--page-number-font); } @left-top { content: var(--PUB-title); font-family: var(--title-font); margin-right: 0.8cm; writing-mode: vertical-rl; text-orientation: mixed; } } .pagedjs_sheet { box-shadow: -5px 5px 12px 0px var(--color-pageSheet); } body{ background-color: var(--color-paper); } p{ color: var(--text-color); font-family: var(--body-font); font-size: 12pt; line-height: 13pt; text-indent: 15pt; text-wrap: pretty; } p:nth-of-type(3n) { border: 2px solid orange; margin-left: -10px; }