DSDUDEd commited on
Commit
0d73431
·
verified ·
1 Parent(s): d83b732

Create style.css

Browse files
Files changed (1) hide show
  1. style.css +72 -0
style.css ADDED
@@ -0,0 +1,72 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ body {
2
+ background-color: #0a0a0a;
3
+ color: #33ff33;
4
+ font-family: "Courier New", monospace;
5
+ display: flex;
6
+ justify-content: center;
7
+ padding: 20px;
8
+ }
9
+
10
+ .terminal {
11
+ width: 650px;
12
+ border: 2px solid #33ff33;
13
+ padding: 20px;
14
+ border-radius: 5px;
15
+ background-color: #000;
16
+ box-shadow: 0 0 10px #33ff33;
17
+ }
18
+
19
+ h1 {
20
+ margin-top: 0;
21
+ font-size: 24px;
22
+ text-align: center;
23
+ }
24
+
25
+ .chat-window {
26
+ height: 450px;
27
+ overflow-y: auto;
28
+ border: 1px solid #33ff33;
29
+ padding: 10px;
30
+ margin-bottom: 10px;
31
+ background-color: #000;
32
+ line-height: 1.4em;
33
+ }
34
+
35
+ .user {
36
+ color: #33ccff;
37
+ margin: 2px 0;
38
+ }
39
+
40
+ .ai {
41
+ color: #33ff33;
42
+ margin: 2px 0;
43
+ }
44
+
45
+ input[type=text] {
46
+ width: 80%;
47
+ background: #000;
48
+ color: #33ff33;
49
+ border: 1px solid #33ff33;
50
+ padding: 5px;
51
+ font-family: monospace;
52
+ font-size: 16px;
53
+ }
54
+
55
+ input[type=text].active-cursor {
56
+ border-right: 2px solid #33ff33;
57
+ animation: blink 1s step-start infinite;
58
+ }
59
+
60
+ @keyframes blink {
61
+ 50% { border-color: transparent; }
62
+ }
63
+
64
+ button {
65
+ background: #33ff33;
66
+ color: #000;
67
+ border: none;
68
+ padding: 5px 12px;
69
+ font-family: monospace;
70
+ font-size: 16px;
71
+ cursor: pointer;
72
+ }