22 lines
317 B
CSS
22 lines
317 B
CSS
|
:root {
|
||
|
background-color: white;
|
||
|
}
|
||
|
|
||
|
body {
|
||
|
display: flex;
|
||
|
flex-direction: column;
|
||
|
}
|
||
|
|
||
|
.Header {
|
||
|
display: flex;
|
||
|
flex-direction: row;
|
||
|
}
|
||
|
.Header h1 {
|
||
|
margin: auto;
|
||
|
align-self: center;
|
||
|
}
|
||
|
.Header input {
|
||
|
margin-top: auto;
|
||
|
margin-bottom: auto;
|
||
|
align-self: flex-end;
|
||
|
}/*# sourceMappingURL=style.css.map */
|