2016-10-17 03:24:39 -05:00
|
|
|
#terminal-container {
|
|
|
|
position: fixed;
|
|
|
|
margin-left: 10%;
|
2016-10-27 13:26:00 -05:00
|
|
|
height: 100%;
|
2016-10-17 03:24:39 -05:00
|
|
|
width: 99%;
|
2016-10-27 13:26:00 -05:00
|
|
|
overflow: auto;
|
2017-06-06 21:23:51 -04:00
|
|
|
overflow-y: scroll;
|
2016-10-17 03:24:39 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
#terminal {
|
|
|
|
padding-top: 10px;
|
|
|
|
padding-left: 10px;
|
|
|
|
height: auto;
|
2016-10-24 02:18:01 -05:00
|
|
|
width: 100%;
|
2016-10-17 03:24:39 -05:00
|
|
|
font-size: 16px;
|
2016-10-27 13:26:00 -05:00
|
|
|
overflow: auto;
|
|
|
|
overflow-y: scroll;
|
2017-06-06 21:23:51 -04:00
|
|
|
background-color: var(--my-background-color);
|
2016-10-17 03:24:39 -05:00
|
|
|
}
|
|
|
|
|
2017-06-25 18:39:17 -05:00
|
|
|
/*
|
|
|
|
.posted {
|
|
|
|
width: 70%;
|
|
|
|
}*/
|
|
|
|
|
2016-10-17 03:24:39 -05:00
|
|
|
#terminal-input {
|
2017-06-06 21:23:51 -04:00
|
|
|
background-color: var(--my-background-color);
|
|
|
|
color: var(--my-font-color);
|
2016-10-17 03:24:39 -05:00
|
|
|
transition: height 1s;
|
|
|
|
}
|
|
|
|
|
|
|
|
.terminal-input {
|
|
|
|
display: table-cell;
|
2016-10-24 02:18:01 -05:00
|
|
|
width: 90%;
|
2016-10-17 03:24:39 -05:00
|
|
|
padding: 0px !important;
|
|
|
|
margin: 0px !important;
|
|
|
|
border: 0px;
|
2017-06-06 21:23:51 -04:00
|
|
|
background-color: var(--my-background-color);
|
2016-10-17 03:24:39 -05:00
|
|
|
font-size: 16px;
|
|
|
|
outline: none;
|
2017-06-06 21:23:51 -04:00
|
|
|
color: var(--my-font-color);
|
2016-10-17 03:24:39 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|