2026-05-30 12:15:04 -05:00
|
|
|
body {
|
|
|
|
|
padding-top: 2em;
|
|
|
|
|
font-family: sans-serif;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
form {
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
2026-06-01 01:29:44 -05:00
|
|
|
height: fit-content;
|
|
|
|
|
padding: 1em;
|
|
|
|
|
width: 60%;
|
2026-05-30 12:15:04 -05:00
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
input {
|
|
|
|
|
margin-bottom: 1.5em;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
h1 {
|
|
|
|
|
font-size: x-large;
|
|
|
|
|
font-weight: bold;
|
|
|
|
|
margin-bottom: 2em;
|
|
|
|
|
}
|
2026-06-01 01:29:44 -05:00
|
|
|
|
|
|
|
|
main {
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: row;
|
|
|
|
|
gap: 1em;
|
|
|
|
|
|
|
|
|
|
height: fit-content;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#blurb {
|
|
|
|
|
border: 1px solid var(--line-color);
|
|
|
|
|
border-radius: var(--input-border-radius);
|
|
|
|
|
padding: 1em;
|
|
|
|
|
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
gap: 1.5em;
|
|
|
|
|
height: fit-content;
|
|
|
|
|
width: 40%;
|
|
|
|
|
|
|
|
|
|
code {
|
|
|
|
|
font-family: monospace;
|
|
|
|
|
font-size: 115%;
|
|
|
|
|
}
|
|
|
|
|
}
|