Spaces:
Running
Running
Update style.css
Browse files
style.css
CHANGED
|
@@ -1,49 +1,50 @@
|
|
| 1 |
-
html,body{
|
| 2 |
-
margin:0;
|
| 3 |
-
height:100%;
|
| 4 |
-
background:#000;
|
| 5 |
-
color:#d7ffe9;
|
| 6 |
-
font-family:monospace;
|
| 7 |
}
|
| 8 |
|
| 9 |
-
#app{
|
| 10 |
-
display:flex;
|
| 11 |
-
height:100vh;
|
|
|
|
| 12 |
}
|
| 13 |
|
| 14 |
-
#viewport{
|
| 15 |
-
flex:1;
|
| 16 |
-
background:black;
|
| 17 |
}
|
| 18 |
|
| 19 |
-
#console{
|
| 20 |
-
width:
|
| 21 |
-
background:#020b0a;
|
| 22 |
-
border-left:1px solid #144;
|
| 23 |
-
|
| 24 |
-
|
| 25 |
-
|
| 26 |
}
|
| 27 |
|
| 28 |
-
.header{
|
| 29 |
-
color:#38ffb3;
|
| 30 |
-
font-weight:bold;
|
| 31 |
-
margin-bottom:6px;
|
| 32 |
}
|
| 33 |
|
| 34 |
-
#log{
|
| 35 |
-
flex:1;
|
| 36 |
-
overflow:auto;
|
| 37 |
-
font-size:13px;
|
| 38 |
-
border:1px solid #144;
|
| 39 |
-
padding:6px;
|
| 40 |
-
margin-bottom:6px;
|
| 41 |
}
|
| 42 |
|
| 43 |
-
#input{
|
| 44 |
-
background:black;
|
| 45 |
-
color:#d7ffe9;
|
| 46 |
-
border:1px solid #144;
|
| 47 |
-
padding:8px;
|
| 48 |
-
outline:none;
|
| 49 |
}
|
|
|
|
| 1 |
+
html, body {
|
| 2 |
+
margin: 0;
|
| 3 |
+
height: 100%;
|
| 4 |
+
background: #000;
|
| 5 |
+
color: #d7ffe9;
|
| 6 |
+
font-family: monospace;
|
| 7 |
}
|
| 8 |
|
| 9 |
+
#app {
|
| 10 |
+
display: flex;
|
| 11 |
+
height: 100vh;
|
| 12 |
+
width: 100vw;
|
| 13 |
}
|
| 14 |
|
| 15 |
+
#viewport {
|
| 16 |
+
flex: 1;
|
| 17 |
+
background: black;
|
| 18 |
}
|
| 19 |
|
| 20 |
+
#console {
|
| 21 |
+
width: 380px;
|
| 22 |
+
background: #020b0a;
|
| 23 |
+
border-left: 1px solid #144;
|
| 24 |
+
display: flex;
|
| 25 |
+
flex-direction: column;
|
| 26 |
+
padding: 8px;
|
| 27 |
}
|
| 28 |
|
| 29 |
+
.header {
|
| 30 |
+
color: #38ffb3;
|
| 31 |
+
font-weight: bold;
|
| 32 |
+
margin-bottom: 6px;
|
| 33 |
}
|
| 34 |
|
| 35 |
+
#log {
|
| 36 |
+
flex: 1;
|
| 37 |
+
overflow-y: auto;
|
| 38 |
+
font-size: 13px;
|
| 39 |
+
border: 1px solid #144;
|
| 40 |
+
padding: 6px;
|
| 41 |
+
margin-bottom: 6px;
|
| 42 |
}
|
| 43 |
|
| 44 |
+
#input {
|
| 45 |
+
background: black;
|
| 46 |
+
color: #d7ffe9;
|
| 47 |
+
border: 1px solid #144;
|
| 48 |
+
padding: 8px;
|
| 49 |
+
outline: none;
|
| 50 |
}
|