xp-consoles/console.css

41 lines
492 B
CSS

html, body, #input, #output {
margin: 0;
height: 100%;
}
.hslice {
display: none;
}
html, body {
overflow: hidden;
}
#input, #output {
width: 50%;
max-width: 50%;
overflow: auto;
box-sizing: border-box;
}
textarea {
resize: none;
}
#output {
position: absolute;
top: 0;
bottom: 0;
left: 50%;
right: 0;
white-space: pre-wrap;
word-break: break-all;
font-family: monospace;
font-size: 10pt;
}
.buttons {
position: absolute;
bottom: 0;
right: 0;
}