PdfCSS:APRJA Minor Tech: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
No edit summary |
||
Line 8: | Line 8: | ||
--heading-font: "Times New Roman", serif; | --heading-font: "Times New Roman", serif; | ||
--author-font: "Arial", sans-serif; | --author-font: "Arial", sans-serif; | ||
--accent-color: #2A9277; | |||
} | } | ||
Line 20: | Line 21: | ||
@page:first { | @page:first { | ||
background-color: | background-color: var(--accent-color); | ||
/*background-color: #13322b; this is the rgb value of the pantone we used for the newspaper*/ | /*background-color: #13322b; this is the rgb value of the pantone we used for the newspaper*/ | ||
Revision as of 13:05, 31 May 2023
@charset "utf-8";
:root{
--first-heading-size: 36px;
--first-heading-line-height: 150%;
--second-heading-size: 18px;
--second-heading-line-height: 130%;
--heading-font: "Times New Roman", serif;
--author-font: "Arial", sans-serif;
--accent-color: #2A9277;
}
/*------------------page rules */
@page {
size: 210mm 297mm portrait;
margin: 100px 90px 90px 90px;
}
@page:first {
background-color: var(--accent-color);
/*background-color: #13322b; this is the rgb value of the pantone we used for the newspaper*/
@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;
padding-top: var(--second-heading-size);
line-height: var(--second-heading-line-height);
}
/*----------------table of contents */
div.TOC {
display:none;
}
/*-----------------turning off embedded pads */
div.pad {
display: none;
}
/*-----------------page breaks */
section.article {
break-before: always;
}
/*-----------------sections */