53 lines
946 B
CSS
53 lines
946 B
CSS
.tab-cli {
|
|
height: 100%;
|
|
}
|
|
.tab-cli p {
|
|
padding: 5px;
|
|
border: 1px dotted silver;
|
|
}
|
|
.tab-cli .backdrop {
|
|
border: 1px solid silver;
|
|
background-color: rgba(0,0,0,0.75);
|
|
|
|
margin-top: 10px;
|
|
height: calc(100% - 80px); /* - (p, textarea) */
|
|
background-image: url("../images/light-wide-1.svg");
|
|
background-repeat: no-repeat;
|
|
background-position: 50% 80%;
|
|
background-size: 600px;
|
|
}
|
|
.tab-cli .window {
|
|
height:100%;
|
|
padding: 5px;
|
|
|
|
overflow-y: scroll;
|
|
overflow-x: hidden;
|
|
|
|
font-family: monospace;
|
|
color: white;
|
|
|
|
box-sizing: border-box;
|
|
-webkit-user-select: text;
|
|
}
|
|
.tab-cli textarea {
|
|
-webkit-box-sizing: border-box;
|
|
|
|
width: 100%;
|
|
|
|
margin-top: 8px;
|
|
|
|
height: 22px;
|
|
line-height: 20px;
|
|
|
|
padding-left: 5px;
|
|
|
|
border: 1px solid silver;
|
|
|
|
resize: none;
|
|
}
|
|
.tab-cli #content-watermark {
|
|
z-index:0;
|
|
}
|
|
.tab-cli .window .wrapper {
|
|
white-space: pre-wrap;
|
|
} |