43 lines
597 B
CSS
43 lines
597 B
CSS
body {
|
|
background-color: #fff7f7;
|
|
color: #000000;
|
|
text-align: center;
|
|
font-family: 'Courier New';
|
|
font-size: 20px;
|
|
}
|
|
|
|
h1 {
|
|
color: #d46a64;
|
|
-webkit-text-stroke-width: 2px;
|
|
-webkit-text-stroke-color: var(--header-stroke-color);
|
|
font-size: 80px;
|
|
font-family: 'Helvetica';
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
.bodyDiv {
|
|
width: 80vw;
|
|
margin-left: auto;
|
|
margin-right: auto;
|
|
}
|
|
|
|
button {
|
|
font-family: 'Courier New';
|
|
font-size: 20px;
|
|
margin-top: 10px;
|
|
margin-bottom: 5px;
|
|
}
|
|
|
|
input {
|
|
font-size: 20px;
|
|
}
|
|
|
|
textarea {
|
|
width: 30vw;
|
|
height: 20vh;
|
|
font-size: 20px;
|
|
}
|
|
|
|
.leftjust {
|
|
text-align: left;
|
|
} |