File size: 1,217 Bytes
0d73431
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
body {
    background-color: #0a0a0a;
    color: #33ff33;
    font-family: "Courier New", monospace;
    display: flex;
    justify-content: center;
    padding: 20px;
}

.terminal {
    width: 650px;
    border: 2px solid #33ff33;
    padding: 20px;
    border-radius: 5px;
    background-color: #000;
    box-shadow: 0 0 10px #33ff33;
}

h1 {
    margin-top: 0;
    font-size: 24px;
    text-align: center;
}

.chat-window {
    height: 450px;
    overflow-y: auto;
    border: 1px solid #33ff33;
    padding: 10px;
    margin-bottom: 10px;
    background-color: #000;
    line-height: 1.4em;
}

.user {
    color: #33ccff;
    margin: 2px 0;
}

.ai {
    color: #33ff33;
    margin: 2px 0;
}

input[type=text] {
    width: 80%;
    background: #000;
    color: #33ff33;
    border: 1px solid #33ff33;
    padding: 5px;
    font-family: monospace;
    font-size: 16px;
}

input[type=text].active-cursor {
    border-right: 2px solid #33ff33;
    animation: blink 1s step-start infinite;
}

@keyframes blink {
    50% { border-color: transparent; }
}

button {
    background: #33ff33;
    color: #000;
    border: none;
    padding: 5px 12px;
    font-family: monospace;
    font-size: 16px;
    cursor: pointer;
}