2021-06-30 15:19:44 -04:00
|
|
|
@charset "UTF-8";
|
2022-03-22 17:14:36 -04:00
|
|
|
|
2021-06-30 15:19:44 -04:00
|
|
|
/* Media Queries */
|
2022-03-22 17:14:36 -04:00
|
|
|
|
|
|
|
/* Reduce padding & margins for smaller screens */
|
|
|
|
@media (max-width: 40em) {
|
|
|
|
section#pep-page-section {
|
2023-05-31 05:10:38 -04:00
|
|
|
padding: 1rem;
|
2022-03-22 17:14:36 -04:00
|
|
|
}
|
2021-06-30 15:19:44 -04:00
|
|
|
section#pep-page-section > header > h1 {
|
|
|
|
padding-right: 0;
|
|
|
|
border-right: none;
|
|
|
|
}
|
|
|
|
ul.breadcrumbs {
|
|
|
|
padding: 0 0 .5rem;
|
|
|
|
}
|
|
|
|
nav#pep-sidebar {
|
|
|
|
display: none;
|
|
|
|
}
|
2022-03-22 17:14:36 -04:00
|
|
|
pre {
|
|
|
|
font-size: 0.8175rem;
|
|
|
|
}
|
2021-06-30 15:19:44 -04:00
|
|
|
table th,
|
|
|
|
table td {
|
|
|
|
padding: 0 0.1rem;
|
|
|
|
}
|
|
|
|
}
|
2022-03-22 17:14:36 -04:00
|
|
|
|
|
|
|
@media (min-width: 40em) {
|
2021-06-30 15:19:44 -04:00
|
|
|
section#pep-page-section {
|
2022-03-22 17:14:36 -04:00
|
|
|
display: table;
|
2021-06-30 15:19:44 -04:00
|
|
|
margin: 0 auto;
|
|
|
|
max-width: 75em;
|
2022-03-22 17:14:36 -04:00
|
|
|
padding: 0.5rem 1rem 0;
|
|
|
|
width: 100%;
|
2021-06-30 15:19:44 -04:00
|
|
|
}
|
|
|
|
section#pep-page-section > article {
|
2022-03-31 00:42:33 -04:00
|
|
|
max-width: 37em;
|
2021-06-30 15:19:44 -04:00
|
|
|
width: 74%;
|
|
|
|
float: right;
|
|
|
|
margin-right: 0;
|
|
|
|
font-size: 1rem;
|
|
|
|
}
|
|
|
|
nav#pep-sidebar {
|
|
|
|
width: 24%;
|
|
|
|
float: left;
|
|
|
|
margin-right: 2%;
|
|
|
|
}
|
2022-03-22 17:14:36 -04:00
|
|
|
/* Make less prominent when sidebar ToC is available */
|
|
|
|
details > summary {
|
|
|
|
font-size: 1rem;
|
|
|
|
width: max-content;
|
|
|
|
}
|
2021-06-30 15:19:44 -04:00
|
|
|
}
|
|
|
|
@media (min-width: 60em) {
|
|
|
|
section#pep-page-section > article {
|
2022-03-31 00:42:33 -04:00
|
|
|
max-width: 56em;
|
2021-06-30 15:19:44 -04:00
|
|
|
padding-left: 3.2%;
|
|
|
|
padding-right: 3.2%;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@media print {
|
|
|
|
*,
|
|
|
|
*:before,
|
|
|
|
*:after {
|
|
|
|
color: #000 !important;
|
|
|
|
}
|
|
|
|
body {
|
|
|
|
font-size: 10pt;
|
|
|
|
line-height: 1.67;
|
|
|
|
}
|
|
|
|
*[role="main"] a[href]:after {
|
|
|
|
content: " (" attr(href) ")";
|
|
|
|
font-size: .75rem;
|
|
|
|
}
|
|
|
|
pre,
|
|
|
|
blockquote {
|
|
|
|
page-break-inside: avoid;
|
|
|
|
}
|
|
|
|
thead {
|
|
|
|
display: table-header-group;
|
|
|
|
}
|
|
|
|
tr,
|
|
|
|
img {
|
|
|
|
page-break-inside: avoid;
|
|
|
|
}
|
|
|
|
img {
|
|
|
|
max-width: 100% !important;
|
|
|
|
}
|
2023-11-14 13:41:48 -05:00
|
|
|
/* Page margins according to DIN 5008, leaves space for punched holes. */
|
2021-06-30 15:19:44 -04:00
|
|
|
@page {
|
2023-11-14 13:41:48 -05:00
|
|
|
margin-top: 2cm;
|
|
|
|
margin-bottom: 2cm;
|
|
|
|
margin-left: 2.5cm;
|
|
|
|
margin-right: 2.5cm;
|
2021-06-30 15:19:44 -04:00
|
|
|
}
|
|
|
|
p,
|
|
|
|
h2,
|
|
|
|
h3 {
|
|
|
|
orphans: 3;
|
|
|
|
widows: 3;
|
|
|
|
}
|
|
|
|
h1,
|
|
|
|
h2,
|
|
|
|
h3 {
|
|
|
|
page-break-after: avoid;
|
|
|
|
}
|
2023-11-14 13:41:48 -05:00
|
|
|
h1 {
|
|
|
|
font-size: 18pt;
|
|
|
|
font-weight: bold;
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
h2, details > summary {
|
|
|
|
font-size: 15pt;
|
|
|
|
font-weight: normal;
|
|
|
|
}
|
|
|
|
h3 {
|
|
|
|
font-size: 13pt;
|
|
|
|
font-weight: normal;
|
|
|
|
}
|
|
|
|
h4 {
|
|
|
|
font-size: 10pt;
|
|
|
|
font-weight: 600;
|
|
|
|
}
|
|
|
|
a, abbr {
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
details {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
details[open] {
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
|
|
|
|
h1.page-title:first-child {
|
|
|
|
margin-top: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
section#pep-page-section {
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
padding: 0;
|
|
|
|
margin: 0 auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
section#pep-page-section > header,
|
|
|
|
nav#pep-sidebar {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
section#pep-page-section > article {
|
|
|
|
float: none;
|
|
|
|
max-width: 17.5cm;
|
|
|
|
width: auto;
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* This blocks a small portion on each page. */
|
|
|
|
readthedocs-flyout {
|
|
|
|
display: none;
|
|
|
|
}
|
2021-06-30 15:19:44 -04:00
|
|
|
}
|