Spaces:
Running
Running
Update style.css
Browse files
style.css
CHANGED
|
@@ -1,64 +1,38 @@
|
|
| 1 |
html, body {
|
| 2 |
margin: 0;
|
| 3 |
-
|
| 4 |
background: black;
|
| 5 |
-
color: #
|
| 6 |
font-family: monospace;
|
|
|
|
| 7 |
}
|
| 8 |
|
| 9 |
-
#
|
| 10 |
display: flex;
|
| 11 |
-
height:
|
| 12 |
}
|
| 13 |
|
| 14 |
#viewport {
|
| 15 |
-
|
| 16 |
-
|
| 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 |
-
|
| 43 |
-
padding: 6px;
|
| 44 |
}
|
| 45 |
|
| 46 |
#input {
|
| 47 |
background: black;
|
| 48 |
-
color: #
|
| 49 |
-
border: 1px solid #
|
| 50 |
-
padding:
|
| 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 |
}
|
|
|
|
| 1 |
html, body {
|
| 2 |
margin: 0;
|
| 3 |
+
padding: 0;
|
| 4 |
background: black;
|
| 5 |
+
color: #00ffcc;
|
| 6 |
font-family: monospace;
|
| 7 |
+
height: 100%;
|
| 8 |
}
|
| 9 |
|
| 10 |
+
#root {
|
| 11 |
display: flex;
|
| 12 |
+
height: 100%;
|
| 13 |
}
|
| 14 |
|
| 15 |
#viewport {
|
| 16 |
+
border: 2px solid #00ffcc;
|
| 17 |
+
image-rendering: pixelated;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 18 |
}
|
| 19 |
|
| 20 |
#console {
|
| 21 |
flex: 1;
|
| 22 |
display: flex;
|
| 23 |
flex-direction: column;
|
| 24 |
+
margin-left: 10px;
|
| 25 |
}
|
| 26 |
|
| 27 |
#log {
|
| 28 |
flex: 1;
|
| 29 |
overflow-y: auto;
|
| 30 |
+
white-space: pre-wrap;
|
|
|
|
| 31 |
}
|
| 32 |
|
| 33 |
#input {
|
| 34 |
background: black;
|
| 35 |
+
color: #00ffcc;
|
| 36 |
+
border: 1px solid #00ffcc;
|
| 37 |
+
padding: 6px;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 38 |
}
|