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