File size: 1,411 Bytes
10ba43b
 
9183624
10ba43b
 
 
 
 
 
 
 
 
 
 
 
 
 
9183624
10ba43b
9183624
 
10ba43b
 
 
 
 
9183624
10ba43b
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
9183624
10ba43b
 
9183624
 
10ba43b
 
 
 
 
 
9183624
 
10ba43b
 
9183624
 
10ba43b
 
9183624
10ba43b
03dcf00
 
 
10ba43b
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
03dcf00
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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
body, html {
    height: 100%;
    margin: 0;
    font-family: 'Arial', sans-serif;
    background-color: #121212;
    color: white;
}

#sidebar {
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    width: 250px;
    background-color: #1f1f1f;
    display: flex;
    flex-direction: column;
    padding: 20px;
    box-sizing: border-box;
}

button {
    background-color: #333;
    color: white;
    border: none;
    padding: 10px 20px;
    margin-bottom: 10px;
    cursor: pointer;
}

button:hover {
    background-color: #444;
}

#dark-mode-toggle {
    margin-top: auto;
}

#dark-mode {
    accent-color: #4caf50;
}

#chat-interface {
    margin-left: 250px;
    padding: 20px;
}

#conversation-history {
    height: calc(100vh - 180px);
    overflow-y: auto;
    background-color: #333;
    padding: 10px;
    margin-bottom: 20px;
}

#message-input-area {
    display: flex;
}

#message-input {
    flex-grow: 1;
    padding: 10px;
    background-color: #333;
    border: none;
    color: white;
}

#send-message {
    background-color: #4caf50;
    border: none;
    padding: 0 20px;
    cursor: pointer;
}

#send-message:hover {
    background-color: #66bb6a;
}

footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#model-version-label, #settings-toggle label {
    margin-right: 10px;
}

#footer input[type="checkbox"] {
    accent-color: #4caf50;
}