44a87f08ef
FossilOrigin-Name: f16c68ee6d5ebb8dec2ab656dbab2ddb5f1d5133153ad553f986b31020adaa38
51 lines
971 B
CSS
51 lines
971 B
CSS
body {
|
|
display: flex;
|
|
flex-direction: column;
|
|
flex-wrap: wrap;
|
|
}
|
|
textarea {
|
|
font-family: monospace;
|
|
}
|
|
header {
|
|
font-size: 130%;
|
|
font-weight: bold;
|
|
}
|
|
.hidden, .initially-hidden {
|
|
position: absolute !important;
|
|
opacity: 0 !important;
|
|
pointer-events: none !important;
|
|
display: none !important;
|
|
}
|
|
fieldset.options {
|
|
font-size: 75%;
|
|
}
|
|
fieldset > legend {
|
|
padding: 0 0.5em;
|
|
}
|
|
span.labeled-input {
|
|
padding: 0.25em;
|
|
margin: 0.25em 0.5em;
|
|
border-radius: 0.25em;
|
|
white-space: nowrap;
|
|
background: #0002;
|
|
}
|
|
.center { text-align: center; }
|
|
.error {
|
|
color: red;
|
|
background-color: yellow;
|
|
}
|
|
.warning { color: firebrick; }
|
|
.input-wrapper { white-space: nowrap; }
|
|
#test-output {
|
|
border: 1px inset;
|
|
padding: 0.25em;
|
|
/*max-height: 30em;*/
|
|
overflow: auto;
|
|
white-space: break-spaces;
|
|
display: flex; flex-direction: column;
|
|
font-family: monospace;
|
|
}
|
|
#test-output.reverse {
|
|
flex-direction: column-reverse;
|
|
}
|