21 lines
218 B
CSS
21 lines
218 B
CSS
|
|
body {
|
||
|
|
padding-top: 2em;
|
||
|
|
font-family: sans-serif;
|
||
|
|
}
|
||
|
|
|
||
|
|
form {
|
||
|
|
display: flex;
|
||
|
|
flex-direction: column;
|
||
|
|
|
||
|
|
}
|
||
|
|
|
||
|
|
input {
|
||
|
|
margin-bottom: 1.5em;
|
||
|
|
}
|
||
|
|
|
||
|
|
h1 {
|
||
|
|
font-size: x-large;
|
||
|
|
font-weight: bold;
|
||
|
|
margin-bottom: 2em;
|
||
|
|
}
|