Added basic styling.

This commit is contained in:
Lewin Probst 2020-02-03 16:09:41 +01:00
parent 29d903d070
commit 90cd3b7a46
3 changed files with 81 additions and 0 deletions

10
css/01-form.css Normal file
View file

@ -0,0 +1,10 @@
form {
--textarea-height: 6em;
--label-height: 1.5em;
display: flex;
flex-direction: column;
justify-content: space-around;
padding-top: 2em;
padding-bottom: 2em;
height: calc(9 * 1.5 * var(--label-height) + var(--textarea-height));
}