fix font-family set everywhere, changed spacings and button text size

This commit is contained in:
neri 2021-06-28 01:22:52 +02:00
parent ad4def1569
commit c89c934d04
1 changed files with 3 additions and 2 deletions

View File

@ -10,7 +10,6 @@ html {
*, *,
*::before, *::before,
*::after { *::after {
font-family: sans;
box-sizing: inherit; box-sizing: inherit;
} }
@ -21,6 +20,7 @@ body {
main { main {
color: var(--fg); color: var(--fg);
font-family: sans;
max-width: 1200px; max-width: 1200px;
margin: 0 auto; margin: 0 auto;
padding: 1rem; padding: 1rem;
@ -56,7 +56,7 @@ textarea,
border: 2px solid var(--fg); border: 2px solid var(--fg);
border-radius: 5px; border-radius: 5px;
margin-bottom: 1rem; margin-bottom: 1rem;
max-width: calc(100vw - 3rem - 4px); max-width: calc(100vw - 2rem);
} }
*.hidden { *.hidden {
@ -69,6 +69,7 @@ input[type="checkbox"] {
.button { .button {
cursor: pointer; cursor: pointer;
font-size: 1rem;
} }
a.button { a.button {