improve margins

This commit is contained in:
John Bowdre 2024-06-19 14:02:03 -05:00
parent 64bd8a01a4
commit 7b238e1dfe

View file

@ -14,11 +14,19 @@
url('https://cdn.runtimeterror.dev/fonts/BerkeleyMono-Regular.woff2') format('woff2'), url('https://cdn.runtimeterror.dev/fonts/BerkeleyMono-Regular.woff2') format('woff2'),
} }
/* override page max-width */ /* minor layout tweaks */
.page { .page {
max-width: 72rem; max-width: 72rem;
} }
.page__body {
margin: 1rem;
}
.page__aside {
margin: 0 1rem 0 0;
}
/* logo tweaks */ /* logo tweaks */
.page__logo { .page__logo {
@ -245,11 +253,15 @@ input {
background-color: var(--off-bg); background-color: var(--off-bg);
color: var(--off-fg); color: var(--off-fg);
height: 1.5rem; height: 1.5rem;
border-radius: 0.25rem; border-radius: 0.25rem 0 0 0.25rem;
padding-left: 0.5rem; padding-left: 0.5rem;
font-family: var(--font-monospace); font-family: var(--font-monospace);
} }
form {
width:auto;
}
input:focus { input:focus {
outline: none; outline: none;
} }