make the site not take up the full width of the screen

This commit is contained in:
zyl 2024-11-12 17:51:01 -08:00
parent 0a551c3091
commit 772764ea91
Signed by: zyl
SSH key fingerprint: SHA256:uxxbSXbdroP/OnKBGnEDk5q7EKB2razvstC/KmzdXXs

View file

@ -38,8 +38,17 @@ a {
} }
#content { #content {
display: flex;
flex-direction: column;
align-items: center;
main.page { main.page {
margin: 0 8px 8px 8px; $width: 8px;
$max-width: 700px;
margin: 0 $width $width $width;
width: calc(100% - $width * 2);
max-width: $max-width;
} }
.index-info { .index-info {
@ -155,6 +164,11 @@ abbr {
} }
} }
.docs-links {
margin-top: 8px;
margin-bottom: -8px;
}
.float-left { .float-left {
float: left; float: left;
} }