html, body { width: 100%; } html { font-family: sans-serif; } @media (prefers-color-scheme: dark) { body { background-color: rgb(41, 41, 41); color: white; } a { color: lightblue; } input { background-color: rgb(41, 41, 41); border: 1px solid gray; height: 1.8rem; color: white; } } button { background-color: coral; border-width: 0; &:hover { background-color: color-mix(in oklab, coral 80%, black 20%); cursor: pointer; } height: 2rem; } body { display: flex; flex-direction: column; align-items: center; } /* Home Link */ a[href="/"] { margin-bottom: 20px; } form:not(.fake-form) { display: flex; flex-direction: column; gap: 10px; } .fake-form { display: inline-block; } table { th { text-align: left; } th, td { padding-bottom: 10px; } :is(td, th):not(:last-child) { padding-right: 10px; } }