feat(style): spacing and margin improvements

This commit is contained in:
Price Hiller 2023-08-29 16:55:45 -05:00
parent dd69153e99
commit 5fbad7ebaf
Signed by: Price
SSH Key Fingerprint: SHA256:Y4S9ZzYphRn1W1kbJerJFO6GGsfu9O70VaBSxJO7dF8

View File

@ -83,8 +83,12 @@ body {
height: 100%;
}
p {
.body-wrapper {
display: flex;
max-width: min(700px, 90vw);
align-self: center;
flex-direction: column;
margin-bottom: 30px;
}
.footer-link-items {
@ -261,11 +265,24 @@ pre > code {
background-color: unset;
}
ul {
ul,
ol,
dl {
margin: 0;
}
ol {
dt {
display: list-item;
list-style-type: disc;
border-bottom: medium solid var(--sumiInk3);
}
dd {
margin-left: 10px;
margin-bottom: 10px;
}
dl {
margin: 0;
}