56 lines
811 B
CSS
56 lines
811 B
CSS
.output {
|
|
margin: 100px 50px;
|
|
width: 21.5cm;
|
|
min-height: 29.7cm;
|
|
}
|
|
|
|
.output * {
|
|
font-family: "Golos Text", sans-serif;
|
|
}
|
|
|
|
.output h1, .output h2 {
|
|
font-family: "Libre Baskerville", serif;
|
|
margin: 0 auto;
|
|
}
|
|
|
|
.output h2 {
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
|
|
.output h2::after {
|
|
content: "";
|
|
flex: 1;
|
|
margin-left: 1rem;
|
|
height: 1px;
|
|
background-color: #0f0f0f;
|
|
}
|
|
|
|
.output em {
|
|
font-family: "Nunito", sans-serif;
|
|
}
|
|
|
|
.output a {
|
|
text-decoration: underline 1px black;
|
|
color: inherit;
|
|
}
|
|
|
|
.output code {
|
|
font-family: "JetBrains Mono", monospace;
|
|
}
|
|
|
|
@media print {
|
|
.top {
|
|
display: none !important;
|
|
}
|
|
|
|
.output {
|
|
margin: auto;
|
|
width: auto;
|
|
min-height: auto;
|
|
}
|
|
|
|
main {
|
|
display: block;
|
|
}
|
|
}
|