48 lines
489 B
CSS
48 lines
489 B
CSS
|
html {
|
||
|
height: 100%;
|
||
|
}
|
||
|
|
||
|
body {
|
||
|
min-height: 90%;
|
||
|
text-size: 150%;
|
||
|
line-height: 200%;
|
||
|
width: 40vw;
|
||
|
margin-left: auto;
|
||
|
margin-right: auto;
|
||
|
display: flex;
|
||
|
flex-direction: column;
|
||
|
}
|
||
|
|
||
|
form {
|
||
|
display: flex;
|
||
|
flex-grow: 1;
|
||
|
flex-direction: column;
|
||
|
}
|
||
|
|
||
|
dl {
|
||
|
display: flex;
|
||
|
flex-grow: 1;
|
||
|
flex-direction: column;
|
||
|
}
|
||
|
|
||
|
dd {
|
||
|
display: flex;
|
||
|
}
|
||
|
|
||
|
textarea {
|
||
|
width: 90%;
|
||
|
flex-grow: 1;
|
||
|
}
|
||
|
|
||
|
.bigtext {
|
||
|
flex-grow: 1;
|
||
|
}
|
||
|
|
||
|
#body {
|
||
|
flex-grow: 1;
|
||
|
}
|
||
|
|
||
|
#closingtext {
|
||
|
width: 50%;
|
||
|
}
|