t/tahnaroskakori.css
2022-10-26 01:10:05 +03:00

53 lines
622 B
CSS

@charset "utf-8";
html,
body {
height: 100%;
margin: 0;
padding: 0;
position: relative;
font-family: monospace;
}
html,
#code {
background-color: #111;
color: #4c4;
}
main {
position: absolute;
top: 0;
left: 0;
bottom: 0;
right: 0;
display: flex;
flex-direction: column;
align-items: stretch;
margin: 10px;
}
#code {
flex-grow: 1;
font-size: 1.2rem;
white-space: pre-wrap;
overflow-y: auto;
resize: none;
}
#length {
font-size: 1.2rem;
}
footer {
display: flex;
flex-direction: row;
justify-content: space-between;
align-items: flex-end;
flex-wrap: wrap;
}