31 lines
670 B
CSS
31 lines
670 B
CSS
body {
|
|
background-color: #2B2A34;
|
|
}
|
|
.input_field {
|
|
display: flex;
|
|
justify-content: center;
|
|
}
|
|
.response_container {
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
max-width: fit-content;
|
|
margin: 5px auto;
|
|
|
|
}
|
|
.response_text {
|
|
display: flex;
|
|
justify-content: center;
|
|
border: 2px solid black;
|
|
border-radius: 5px;
|
|
max-width: 300px;
|
|
margin: 5px auto;
|
|
background-color: white;
|
|
width: 200px;
|
|
height: 20px;
|
|
}
|
|
.response_button {
|
|
display: flex;
|
|
justify-content: center;
|
|
}
|
|
|