45 lines
626 B
CSS
45 lines
626 B
CSS
body, input, button {
|
|
width: auto;
|
|
font-size: xx-large;
|
|
background-color: black;
|
|
color: white;
|
|
font-family: "Courier New", Courier, monospace;
|
|
}
|
|
|
|
input, button {
|
|
border: 2px solid white;
|
|
padding: 0px 5px 0px;
|
|
background: transparent;
|
|
}
|
|
|
|
a {
|
|
color: royalblue;
|
|
}
|
|
|
|
.sentences {
|
|
color: black;
|
|
}
|
|
|
|
#wordinput {
|
|
color: black;
|
|
background-color: white;
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
width: auto;
|
|
}
|
|
|
|
|
|
input, .send_button {
|
|
border: none;
|
|
font-size: 2em;
|
|
margin: 10px;
|
|
}
|
|
|
|
.word_input_area {
|
|
border: 2px solid white;
|
|
display: inline-flex;
|
|
}
|
|
|
|
table {
|
|
font-size: inherit;
|
|
} |