Create static/css/style.css
Browse files- app/static/css/style.css +35 -0
app/static/css/style.css
ADDED
@@ -0,0 +1,35 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
body {
|
2 |
+
background-color: #000;
|
3 |
+
margin: 0;
|
4 |
+
padding: 20px;
|
5 |
+
font-family: monospace;
|
6 |
+
}
|
7 |
+
|
8 |
+
#terminal {
|
9 |
+
background-color: #000;
|
10 |
+
color: #0f0;
|
11 |
+
height: 100vh;
|
12 |
+
}
|
13 |
+
|
14 |
+
#terminal-container {
|
15 |
+
padding: 10px;
|
16 |
+
}
|
17 |
+
|
18 |
+
#terminal-input {
|
19 |
+
background: transparent;
|
20 |
+
border: none;
|
21 |
+
color: #0f0;
|
22 |
+
font-family: monospace;
|
23 |
+
font-size: 16px;
|
24 |
+
outline: none;
|
25 |
+
width: 90%;
|
26 |
+
}
|
27 |
+
|
28 |
+
.prompt {
|
29 |
+
color: #0f0;
|
30 |
+
margin-right: 10px;
|
31 |
+
}
|
32 |
+
|
33 |
+
#terminal-output {
|
34 |
+
margin-bottom: 10px;
|
35 |
+
}
|