2024-07-03 07:30:04 -07:00
|
|
|
|
2024-07-23 09:11:41 -07:00
|
|
|
.main--single,
|
|
|
|
.main--list,
|
|
|
|
.content
|
|
|
|
{
|
|
|
|
blockquote,
|
|
|
|
dl,
|
|
|
|
ol,
|
|
|
|
ul
|
|
|
|
{
|
|
|
|
grid-column: main-start / main-end;
|
2024-07-03 07:30:04 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
.codeblock {
|
2024-07-23 09:11:41 -07:00
|
|
|
color: var(--foreground);
|
|
|
|
background-color: var(--background);
|
|
|
|
border: 1px solid var(--gray6);
|
2024-07-03 07:30:04 -07:00
|
|
|
font-family: var(--font-family-monospace);
|
2024-07-23 09:11:41 -07:00
|
|
|
grid-column: gutter-start / gutter-end;
|
2024-07-03 07:30:04 -07:00
|
|
|
overflow: auto;
|
2024-07-23 09:11:41 -07:00
|
|
|
padding-block: var(--space-s);
|
2024-07-03 07:30:04 -07:00
|
|
|
|
2024-07-23 09:11:41 -07:00
|
|
|
.line {
|
|
|
|
margin-inline: var(--gutter-width);
|
|
|
|
}
|
2024-07-03 07:30:04 -07:00
|
|
|
}
|
2024-07-20 17:29:49 -07:00
|
|
|
|
|
|
|
.heading {
|
|
|
|
display: block flex;
|
|
|
|
gap: var(--space-s);
|
|
|
|
grid-column: main-start / main-end;
|
|
|
|
}
|
|
|
|
|
|
|
|
.heading__anchor {
|
|
|
|
align-self: center;
|
|
|
|
color: var(--gray5);
|
|
|
|
font-size: var(--text-m);
|
|
|
|
justify-content: center;
|
|
|
|
|
|
|
|
a {
|
|
|
|
transition: 0.3s color;
|
|
|
|
}
|
|
|
|
|
|
|
|
a:hover {
|
|
|
|
color: var(--text-color);
|
|
|
|
text-decoration: none;
|
|
|
|
transition: 0.3s color;
|
|
|
|
}
|
|
|
|
}
|
2024-07-03 07:30:04 -07:00
|
|
|
}
|