OWE/style.css
2021-02-07 18:52:16 +01:00

90 lines
1.3 KiB
CSS

body, input, button {
width: auto;
font-size: xx-large;
background-color: black;
color: white;
font-family: "Courier New", Courier, monospace;
scrollbar-color: rgba(255,255,255,30%) rgba(100,100,100,30%);
}
body {
margin: 0;
display: flex;
flex-direction: column;
overflow-y: auto;
width: 100vw;
}
.header {
box-sizing: border-box;
background: rgba(0,0,0,30%);
/*max-width: 100%;*/
overflow: none;
align-items: center;
display: flex;
height: 10vw;
}
.sentences, .archive_links {
padding: 0px 30px 0px;
flex-shrink: 0;
min-width: 20%;
}
input, button {
border: 2px solid white;
padding: 0px 5px 0px;
background: transparent;
margin: 30px;
}
.content {
flex: 1;
display: flex;
overflow: auto;
position: absolute;
top: 10vw;
left: 0px;
bottom: 0px;
}
.scrollbox {
padding: 30px 0px 30px;
display: flex;
flex-direction: column;
min-height: min-content;
/*max-width: 100%;*/
}
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;
margin: 0px 30px 0px;
}
table {
font-size: inherit;
}