57 lines
646 B
CSS
57 lines
646 B
CSS
body {
|
|
max-width: 70ch;
|
|
line-height: 1.5;
|
|
margin: 0;
|
|
padding: 1rem;
|
|
}
|
|
|
|
h1, h2, h3, h4, h5, h6 {
|
|
font-size: inherit;
|
|
}
|
|
|
|
h3 {
|
|
font-style: italic;
|
|
}
|
|
|
|
img {
|
|
max-width: 100%;
|
|
height: auto;
|
|
display: block;
|
|
}
|
|
|
|
figure {
|
|
margin: 1.5rem 0;
|
|
width: fit-content;
|
|
max-width: 100%;
|
|
}
|
|
|
|
figcaption {
|
|
font-size: 0.9em;
|
|
font-style: italic;
|
|
margin-top: 0.4rem;
|
|
text-align: center;
|
|
}
|
|
|
|
pre {
|
|
max-width: 100%;
|
|
overflow-x: auto;
|
|
}
|
|
|
|
pre:has(> code) {
|
|
padding: 0.75rem 1rem;
|
|
}
|
|
|
|
code {
|
|
font-size: 0.95em;
|
|
}
|
|
|
|
.anchor {
|
|
text-decoration: none;
|
|
margin-right: 0.3em;
|
|
color: black;
|
|
opacity: 0.3;
|
|
}
|
|
|
|
.anchor:hover {
|
|
opacity: 1;
|
|
}
|