PdfCSS:APRJA Minor Tech: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
No edit summary |
||
Line 14: | Line 14: | ||
@page { | @page { | ||
size: 210mm 297mm portrait; | size: 210mm 297mm portrait; | ||
margin: 60px 60px | margin: 100px 60px 60px 60px; | ||
} | } | ||
Revision as of 12:30, 31 May 2023
@charset "utf-8";
:root{
--first-heading-size: 44px;
--first-heading-line-height: 100%;
--second-heading-size: 24px;
--heading-font: "Times New Roman", serif;
--author-font: "Arial", sans-serif;
}
/*------------------page rules */
@page {
size: 210mm 297mm portrait;
margin: 100px 60px 60px 60px;
}
@page:first {
background-color: #2A9277;
/*margin: 55px 55px 80px 40px;*/
@bottom-right{
content: none;
}
}
@page:left{
@bottom-left{
content: counter(page);
}
}
@page:right{
@bottom-right{
content: counter(page);
}
}
/*-----------------cover */
div.cover > h1 {
font-size: var(--first-heading-size);
line-height: var(--first-heading-line-height);
font-family: var(--heading-font);
margin-top: 0;
}
div.cover > p {
font-size: var(--second-heading-size);
font-family: var(--author-font);
font-weight: bold;
}
/*----------------table of contents */
div.TOC {
display:none;
}
/*-----------------turning off embedded pads */
div.pad {
display: none;
}
/*-----------------page breaks */
section.article {
break-before: always;
}
/*-----------------sections */