Artificial-superintelligence
commited on
Create static/style.css
Browse files- static/style.css +67 -0
static/style.css
ADDED
@@ -0,0 +1,67 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
/* General styling */
|
2 |
+
body {
|
3 |
+
font-family: 'Courier New', Courier, monospace;
|
4 |
+
background-color: #181818;
|
5 |
+
color: white;
|
6 |
+
margin: 0;
|
7 |
+
padding: 0;
|
8 |
+
display: flex;
|
9 |
+
justify-content: center;
|
10 |
+
align-items: center;
|
11 |
+
height: 100vh;
|
12 |
+
}
|
13 |
+
|
14 |
+
/* Terminal container */
|
15 |
+
.terminal-container {
|
16 |
+
width: 80%;
|
17 |
+
max-width: 800px;
|
18 |
+
background-color: #2d2d2d;
|
19 |
+
border-radius: 10px;
|
20 |
+
padding: 20px;
|
21 |
+
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.5);
|
22 |
+
}
|
23 |
+
|
24 |
+
/* Header styling */
|
25 |
+
.header {
|
26 |
+
display: flex;
|
27 |
+
justify-content: space-between;
|
28 |
+
margin-bottom: 20px;
|
29 |
+
font-size: 18px;
|
30 |
+
}
|
31 |
+
|
32 |
+
.header h1 {
|
33 |
+
margin: 0;
|
34 |
+
}
|
35 |
+
|
36 |
+
/* Terminal design */
|
37 |
+
.terminal {
|
38 |
+
display: flex;
|
39 |
+
flex-direction: column;
|
40 |
+
height: 300px;
|
41 |
+
overflow-y: auto;
|
42 |
+
}
|
43 |
+
|
44 |
+
.terminal .output {
|
45 |
+
flex-grow: 1;
|
46 |
+
white-space: pre-wrap;
|
47 |
+
word-wrap: break-word;
|
48 |
+
}
|
49 |
+
|
50 |
+
.prompt {
|
51 |
+
color: #00ff00;
|
52 |
+
}
|
53 |
+
|
54 |
+
.input {
|
55 |
+
background-color: #181818;
|
56 |
+
border: none;
|
57 |
+
color: white;
|
58 |
+
padding: 10px;
|
59 |
+
width: 100%;
|
60 |
+
font-size: 16px;
|
61 |
+
outline: none;
|
62 |
+
}
|
63 |
+
|
64 |
+
/* Input focus styling */
|
65 |
+
.input:focus {
|
66 |
+
border: 1px solid #00ff00;
|
67 |
+
}
|