30 lines
394 B
CSS
30 lines
394 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;
|
|
}
|
|
|
|
a {
|
|
color: royalblue;
|
|
}
|
|
|
|
.sentences {
|
|
color: black;
|
|
}
|
|
|
|
#wordinput {
|
|
color: black;
|
|
background-color: white;
|
|
}
|
|
|
|
table {
|
|
font-size: inherit;
|
|
}
|