You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

176 lines
2.3 KiB
CSS

2 years ago
* {
2 years ago
box-sizing: border-box;
2 years ago
}
2 years ago
html,
body {
margin: 0;
font-size: 24px;
font-family: serif;
2 years ago
}
2 years ago
header {
2 years ago
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
padding: 64px;
2 years ago
}
.last-update {
2 years ago
text-transform: lowercase;
font-family: sans-serif;
font-size: 0.75rem;
margin: 1em;
color: #aaa;
2 years ago
}
2 years ago
.chapter {
2 years ago
max-width: 80ch;
margin-inline: auto;
padding-inline: 32px;
}
.chapter img {
max-width: 100%;
object-fit: contain;
2 years ago
}
.chapter + .chapter {
2 years ago
margin-top: 256px;
2 years ago
}
2 years ago
h1,
h2,
h3 {
font-family: sans-serif;
margin: 2em auto;
2 years ago
}
h2 {
2 years ago
color: white;
background-color: black;
width: fit-content;
margin: 128px auto;
text-align: center;
2 years ago
}
a {
2 years ago
color: tomato;
text-decoration: none;
2 years ago
}
2 years ago
pre,
code {
white-space: pre-wrap;
2 years ago
}
pre {
font-size: 0.85rem;
border-left: 10px solid #eee;
padding-left: 10px;
}
1 year ago
.note,
.todo {
border-left: none;
padding-left: auto;
font-size: 1rem;
2 years ago
margin: 32px auto;
1 year ago
font-family: sans-serif;
2 years ago
display: inline-block;
width: auto;
1 year ago
padding: 1ch;
color: #aaa;
border-left: none;
1 year ago
border: 1px solid #aaa;
2 years ago
position: relative;
2 years ago
}
1 year ago
.note:before,
.todo:before {
line-height: 1;
2 years ago
padding: 0.1ch;
position: absolute;
top: 0;
translate: calc(-1ch + -1px) -100%;
display: inline-block;
background-color: #aaa;
color: white;
2 years ago
}
1 year ago
.note:before {
2 years ago
content: "Note";
2 years ago
}
1 year ago
.todo:before {
2 years ago
content: "TO DO";
2 years ago
}
2 years ago
1 year ago
.placeholder {
font-size: 1rem;
2 years ago
position: relative;
margin: 48px auto;
display: flex;
flex-direction: column;
1 year ago
border: 1px dashed currentColor;
2 years ago
justify-content: center;
align-items: center;
1 year ago
padding: 32px 32px;
2 years ago
border-radius: 50%;
1 year ago
font-family: sans-serif;
2 years ago
text-align: center;
1 year ago
color: currentColor;
2 years ago
}
1 year ago
.placeholder:before {
2 years ago
content: "placeholder";
text-transform: uppercase;
font-size: 0.8rem;
2 years ago
2 years ago
color: #aaa;
2 years ago
}
2 years ago
1 year ago
.admonition {
}
.admonition-title {
margin: 0;
text-transform: uppercase;
}
.admonition * {
margin: 0;
}
.admonition ul {
list-style: none;
padding: 0;
}
2 years ago
@media print {
body {
font-size: 14px;
}
img {
max-width: 10cm;
max-height: 10cm;
object-fit: contain;
}
h1,
h2,
h3 {
margin-top: 0;
margin: 0;
}
.chapter {
max-width: 100%;
}
.chapter + .chapter {
margin-top: 32px;
}
}