38 lines
749 B
CSS
38 lines
749 B
CSS
@CHARSET "UTF-8";
|
|
|
|
/* %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% */
|
|
/* CONSOLE */
|
|
.commandline-wrapper {
|
|
position: absolute;
|
|
z-index: 1;
|
|
width: 100%;
|
|
padding: 26px 0px 0px 0px;
|
|
background-color: darkgray;
|
|
display: none;
|
|
}
|
|
|
|
.commandline {
|
|
font-family: monospace;
|
|
font-size: 12px;
|
|
width: 100%;
|
|
text-align: left;
|
|
padding-left: 8px;
|
|
padding-top: 6px;
|
|
padding-bottom: 6px;
|
|
border: none;
|
|
border-top: solid 8px dimgray;
|
|
border-bottom: solid 5px dimgray;
|
|
background-color: lightgray;
|
|
color: black;
|
|
}
|
|
|
|
.history {
|
|
font-family: monospace;
|
|
font-size: 12px;
|
|
padding: 80px 8px 50px 8px;
|
|
width: 100%;
|
|
height: 100%;
|
|
overflow-y: auto;
|
|
background-color: lightgray;
|
|
color: #303030;
|
|
} |