Initial commit

This commit is contained in:
l_samenv
2020-12-04 09:05:06 +01:00
parent 172042e731
commit 9e1d3b4e07
54 changed files with 47695 additions and 0 deletions

View File

@ -0,0 +1,38 @@
@CHARSET "UTF-8";
/* %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% */
/* CONSOLE */
.commandline-wrapper {
position: absolute;
z-index: 1;
width: 100%;
padding: 26px 0px 0px 0px;
background-color: darkgray;
}
.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 {
position: absolute;
font-family: monospace;
font-size: 12px;
padding: 80px 8px 50px 8px;
width: 100%;
height: 100%;
overflow-y: auto;
background-color: white;
color: black;
}