mirror of
https://github.com/bitburner-official/bitburner-src.git
synced 2024-11-10 09:43:54 +01:00
46 lines
752 B
CSS
46 lines
752 B
CSS
#terminal-container {
|
|
position: fixed;
|
|
margin-left: 10%;
|
|
height: 100%;
|
|
width: 99%;
|
|
overflow: auto;
|
|
overflow-y: scroll;
|
|
}
|
|
|
|
#terminal {
|
|
padding-top: 10px;
|
|
padding-left: 10px;
|
|
height: auto;
|
|
width: 100%;
|
|
font-size: 16px;
|
|
overflow: auto;
|
|
overflow-y: scroll;
|
|
background-color: var(--my-background-color);
|
|
}
|
|
|
|
/*
|
|
.posted {
|
|
width: 70%;
|
|
}*/
|
|
|
|
#terminal-input {
|
|
background-color: var(--my-background-color);
|
|
color: var(--my-font-color);
|
|
transition: height 1s;
|
|
}
|
|
|
|
.terminal-input {
|
|
display: table-cell;
|
|
width: 90%;
|
|
padding: 0px !important;
|
|
margin: 0px !important;
|
|
border: 0px;
|
|
background-color: var(--my-background-color);
|
|
font-size: 16px;
|
|
outline: none;
|
|
color: var(--my-font-color);
|
|
}
|
|
|
|
|
|
|