bitburner-src/css/terminal.css

52 lines
904 B
CSS
Raw Normal View History

#terminal-container {
position: fixed;
margin-left: 10%;
height: 100%;
width: 99%;
overflow: auto;
2017-06-07 03:23:51 +02:00
overflow-y: scroll;
}
#terminal {
padding-top: 10px;
padding-left: 10px;
height: auto;
2017-07-22 00:54:55 +02:00
width: 70%;
font-size: 16px;
overflow: auto;
overflow-y: scroll;
2017-06-07 03:23:51 +02:00
background-color: var(--my-background-color);
2017-07-22 00:54:55 +02:00
table-layout:fixed;
}
/*
.posted {
width: 70%;
}*/
#terminal-input {
2017-06-07 03:23:51 +02:00
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;
2017-06-07 03:23:51 +02:00
background-color: var(--my-background-color);
font-size: 16px;
outline: none;
2017-06-07 03:23:51 +02:00
color: var(--my-font-color);
}
2017-07-22 00:54:55 +02:00
.terminal-line {
width: 70%;
word-wrap: break-word;
hyphens:auto;
-webkit-hyphens: auto;
-moz-hyphens: auto;
}