Update style.css
#1
by ErftgRftg - opened
style.css
CHANGED
|
@@ -1,28 +1,46 @@
|
|
| 1 |
-
|
| 2 |
-
|
| 3 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 4 |
}
|
| 5 |
|
| 6 |
-
|
| 7 |
-
|
| 8 |
-
|
|
|
|
|
|
|
|
|
|
| 9 |
}
|
| 10 |
|
| 11 |
-
|
| 12 |
-
|
| 13 |
-
|
| 14 |
-
|
| 15 |
-
margin-top: 5px;
|
| 16 |
}
|
| 17 |
|
| 18 |
-
|
| 19 |
-
|
| 20 |
-
|
| 21 |
-
|
| 22 |
-
|
| 23 |
-
|
| 24 |
}
|
| 25 |
|
| 26 |
-
|
| 27 |
-
|
| 28 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
/* Reset margins and force a pure black background */
|
| 2 |
+
body, html {
|
| 3 |
+
margin: 0;
|
| 4 |
+
padding: 0;
|
| 5 |
+
background-color: #000000;
|
| 6 |
+
color: #00ff00; /* Classic matrix green text, change to #ffffff for pure white */
|
| 7 |
+
font-family: 'Courier New', Courier, monospace;
|
| 8 |
+
font-size: 16px;
|
| 9 |
+
height: 100%;
|
| 10 |
+
overflow: hidden;
|
| 11 |
}
|
| 12 |
|
| 13 |
+
/* The terminal container */
|
| 14 |
+
#terminal {
|
| 15 |
+
padding: 20px;
|
| 16 |
+
height: calc(100% - 40px);
|
| 17 |
+
overflow-y: auto;
|
| 18 |
+
box-sizing: border-box;
|
| 19 |
}
|
| 20 |
|
| 21 |
+
/* Style for the command input line */
|
| 22 |
+
.input-line {
|
| 23 |
+
display: flex;
|
| 24 |
+
align-items: center;
|
|
|
|
| 25 |
}
|
| 26 |
|
| 27 |
+
/* The prompt styling (user@linux:~$) */
|
| 28 |
+
.prompt {
|
| 29 |
+
color: #00ff00;
|
| 30 |
+
font-weight: bold;
|
| 31 |
+
margin-right: 10px;
|
| 32 |
+
white-space: nowrap;
|
| 33 |
}
|
| 34 |
|
| 35 |
+
/* The invisible input field that captures typing */
|
| 36 |
+
#cmd-input {
|
| 37 |
+
background: transparent;
|
| 38 |
+
border: none;
|
| 39 |
+
color: inherit;
|
| 40 |
+
font-family: inherit;
|
| 41 |
+
font-size: inherit;
|
| 42 |
+
outline: none;
|
| 43 |
+
flex-grow: 1;
|
| 44 |
+
padding: 0;
|
| 45 |
+
margin: 0;
|
| 46 |
+
}
|