Merge branch 'documentation' into development

This commit is contained in:
Felix Mattick 2022-01-21 13:09:54 -06:00
commit a50c8a01ee
No known key found for this signature in database
GPG key ID: 4E7A3D01471F32AB
15 changed files with 706 additions and 323 deletions

View file

@ -114,7 +114,7 @@ summary:focus {
text-decoration: underline;
}
details > :not(summary) {
details > :not(summary):first-child {
margin-top: 0;
}
@ -151,6 +151,11 @@ footer {
color: var(--text-muted);
}
body > footer {
body > footer:last-of-type {
margin-top: 40px;
}
body > header:first-of-type {
border-bottom: 1px solid var(--border);
padding-bottom: 20px;
}

View file

@ -78,3 +78,17 @@ a > code,
a > strong {
color: inherit;
}
dt {
font-weight: 600;
color: var(--text-bright);
}
dd {
margin: 5px 0;
margin-left: 40px;
}
dd + dt {
margin-top: 10px;
}