39 lines
648 B
SCSS
39 lines
648 B
SCSS
|
.demo-overlay {
|
||
|
z-index: 100;
|
||
|
bottom: 0;
|
||
|
left: 0;
|
||
|
width: 100%;
|
||
|
height: 80%;
|
||
|
max-height: 80%;
|
||
|
position: fixed;
|
||
|
background-color: black;
|
||
|
color: #DDDDDD;
|
||
|
overflow: scroll;
|
||
|
font-size: 18px;
|
||
|
font-family: 'Ubuntu Mono', 'Monaco', monospace;
|
||
|
}
|
||
|
|
||
|
.terminal {
|
||
|
padding: 0px 25px;
|
||
|
padding-bottom: 50px;
|
||
|
|
||
|
.welcome {
|
||
|
padding-top: 20px;
|
||
|
}
|
||
|
|
||
|
.log {
|
||
|
white-space: pre;
|
||
|
}
|
||
|
|
||
|
input.shell {
|
||
|
padding: 0;
|
||
|
margin: 0;
|
||
|
display: inline-block;
|
||
|
bottom: 0;
|
||
|
width: 90%;
|
||
|
background-color: black;
|
||
|
border: 0;
|
||
|
outline: 0;
|
||
|
}
|
||
|
}
|