Spaces:
Running
Running
Update style.css
Browse files
style.css
CHANGED
@@ -1,51 +1,91 @@
|
|
1 |
-
body {
|
|
|
2 |
margin: 0;
|
3 |
-
|
4 |
-
|
5 |
-
|
6 |
-
|
7 |
-
|
8 |
-
|
9 |
-
|
10 |
-
|
11 |
-
|
12 |
-
|
13 |
-
|
14 |
-
background-color: #
|
|
|
|
|
15 |
padding: 20px;
|
16 |
-
|
17 |
}
|
18 |
|
19 |
-
|
20 |
-
|
21 |
-
|
22 |
-
border:
|
23 |
-
padding: 10px;
|
24 |
margin-bottom: 10px;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
25 |
background-color: #333;
|
26 |
-
|
|
|
27 |
}
|
28 |
|
29 |
-
#
|
30 |
-
|
|
|
|
|
|
|
|
|
31 |
padding: 10px;
|
32 |
-
margin-right: 10px;
|
33 |
-
border-radius: 4px;
|
34 |
-
border: 1px solid #444;
|
35 |
background-color: #333;
|
36 |
-
|
|
|
37 |
}
|
38 |
|
39 |
-
#send-
|
40 |
-
|
41 |
-
background-color: #555;
|
42 |
-
color: #fff;
|
43 |
-
padding: 10px;
|
44 |
border: none;
|
45 |
-
|
46 |
cursor: pointer;
|
47 |
}
|
48 |
|
49 |
-
#send-
|
50 |
-
background-color: #
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
51 |
}
|
|
|
1 |
+
body, html {
|
2 |
+
height: 100%;
|
3 |
margin: 0;
|
4 |
+
font-family: 'Arial', sans-serif;
|
5 |
+
background-color: #121212;
|
6 |
+
color: white;
|
7 |
+
}
|
8 |
+
|
9 |
+
#sidebar {
|
10 |
+
position: fixed;
|
11 |
+
left: 0;
|
12 |
+
top: 0;
|
13 |
+
bottom: 0;
|
14 |
+
width: 250px;
|
15 |
+
background-color: #1f1f1f;
|
16 |
+
display: flex;
|
17 |
+
flex-direction: column;
|
18 |
padding: 20px;
|
19 |
+
box-sizing: border-box;
|
20 |
}
|
21 |
|
22 |
+
button {
|
23 |
+
background-color: #333;
|
24 |
+
color: white;
|
25 |
+
border: none;
|
26 |
+
padding: 10px 20px;
|
27 |
margin-bottom: 10px;
|
28 |
+
cursor: pointer;
|
29 |
+
}
|
30 |
+
|
31 |
+
button:hover {
|
32 |
+
background-color: #444;
|
33 |
+
}
|
34 |
+
|
35 |
+
#dark-mode-toggle {
|
36 |
+
margin-top: auto;
|
37 |
+
}
|
38 |
+
|
39 |
+
#dark-mode {
|
40 |
+
accent-color: #4caf50;
|
41 |
+
}
|
42 |
+
|
43 |
+
#chat-interface {
|
44 |
+
margin-left: 250px;
|
45 |
+
padding: 20px;
|
46 |
+
}
|
47 |
+
|
48 |
+
#conversation-history {
|
49 |
+
height: calc(100vh - 180px);
|
50 |
+
overflow-y: auto;
|
51 |
background-color: #333;
|
52 |
+
padding: 10px;
|
53 |
+
margin-bottom: 20px;
|
54 |
}
|
55 |
|
56 |
+
#message-input-area {
|
57 |
+
display: flex;
|
58 |
+
}
|
59 |
+
|
60 |
+
#message-input {
|
61 |
+
flex-grow: 1;
|
62 |
padding: 10px;
|
|
|
|
|
|
|
63 |
background-color: #333;
|
64 |
+
border: none;
|
65 |
+
color: white;
|
66 |
}
|
67 |
|
68 |
+
#send-message {
|
69 |
+
background-color: #4caf50;
|
|
|
|
|
|
|
70 |
border: none;
|
71 |
+
padding: 0 20px;
|
72 |
cursor: pointer;
|
73 |
}
|
74 |
|
75 |
+
#send-message:hover {
|
76 |
+
background-color: #66bb6a;
|
77 |
+
}
|
78 |
+
|
79 |
+
footer {
|
80 |
+
display: flex;
|
81 |
+
justify-content: space-between;
|
82 |
+
align-items: center;
|
83 |
+
}
|
84 |
+
|
85 |
+
#model-version-label, #settings-toggle label {
|
86 |
+
margin-right: 10px;
|
87 |
+
}
|
88 |
+
|
89 |
+
#footer input[type="checkbox"] {
|
90 |
+
accent-color: #4caf50;
|
91 |
}
|