31 lines
353 B
CSS
31 lines
353 B
CSS
/* Adjust body and hr to make the page slightly wider if possible. */
|
|
body {
|
|
max-width: 70ch;
|
|
}
|
|
|
|
hr {
|
|
max-width: 80ch;
|
|
}
|
|
|
|
article h1 {
|
|
margin-top: 0;
|
|
font-size: xx-large;
|
|
}
|
|
|
|
figure {
|
|
margin: 0.5em;
|
|
}
|
|
|
|
code {
|
|
color: var(--code-color);
|
|
}
|
|
|
|
img {
|
|
max-width: 100%;
|
|
max-height: 100%;
|
|
}
|
|
|
|
.img-center {
|
|
text-align: center;
|
|
}
|