Spaces:
Running
Running
File size: 807 Bytes
6111ef8 3e5305d 6111ef8 3b70f76 6111ef8 3b70f76 0d0691e 3b70f76 0d0691e 6111ef8 0d0691e 3b70f76 6111ef8 0d0691e 3b70f76 c803da6 6111ef8 c803da6 6111ef8 0d0691e c803da6 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 | html, body {
margin: 0;
height: 100%;
background: black;
color: #d7ffe9;
font-family: monospace;
}
#app {
display: flex;
height: 100vh;
}
#viewport {
flex: 1;
background: black;
}
#side {
width: 420px;
display: flex;
flex-direction: column;
border-left: 1px solid #144;
}
.header {
color: #38ffb3;
font-weight: bold;
padding: 6px;
border-bottom: 1px solid #144;
}
#console {
flex: 1;
display: flex;
flex-direction: column;
}
#log {
flex: 1;
overflow-y: auto;
font-size: 13px;
padding: 6px;
}
#input {
background: black;
color: #d7ffe9;
border: 1px solid #144;
padding: 8px;
outline: none;
}
#web {
height: 40%;
border-top: 1px solid #144;
}
#browser {
width: 100%;
height: calc(100% - 28px);
border: none;
background: #020b0a;
} |