2016-10-17 10:24:39 +02:00
|
|
|
#terminal-container {
|
|
|
|
position: fixed;
|
|
|
|
margin-left: 10%;
|
2016-10-27 20:26:00 +02:00
|
|
|
height: 100%;
|
2016-10-17 10:24:39 +02:00
|
|
|
width: 99%;
|
2016-10-27 20:26:00 +02:00
|
|
|
overflow: auto;
|
2017-09-13 16:22:22 +02:00
|
|
|
overflow-y: scroll;
|
2016-10-17 10:24:39 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#terminal {
|
|
|
|
padding-top: 10px;
|
|
|
|
padding-left: 10px;
|
|
|
|
height: auto;
|
2017-07-22 00:54:55 +02:00
|
|
|
width: 70%;
|
2016-10-17 10:24:39 +02:00
|
|
|
font-size: 16px;
|
2016-10-27 20:26:00 +02:00
|
|
|
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;
|
2016-10-17 10:24:39 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#terminal-input {
|
2017-06-07 03:23:51 +02:00
|
|
|
background-color: var(--my-background-color);
|
|
|
|
color: var(--my-font-color);
|
2016-10-17 10:24:39 +02:00
|
|
|
transition: height 1s;
|
|
|
|
}
|
|
|
|
|
|
|
|
.terminal-input {
|
2017-09-13 16:22:22 +02:00
|
|
|
display: inline-block;
|
2016-10-17 10:24:39 +02:00
|
|
|
padding: 0px !important;
|
|
|
|
margin: 0px !important;
|
|
|
|
border: 0px;
|
2017-06-07 03:23:51 +02:00
|
|
|
background-color: var(--my-background-color);
|
2016-10-17 10:24:39 +02:00
|
|
|
font-size: 16px;
|
|
|
|
outline: none;
|
2017-06-07 03:23:51 +02:00
|
|
|
color: var(--my-font-color);
|
2016-10-17 10:24:39 +02:00
|
|
|
}
|
|
|
|
|
2017-07-22 00:54:55 +02:00
|
|
|
.terminal-line {
|
|
|
|
width: 70%;
|
|
|
|
word-wrap: break-word;
|
|
|
|
hyphens:auto;
|
|
|
|
-webkit-hyphens: auto;
|
|
|
|
-moz-hyphens: auto;
|
|
|
|
}
|