AilexGPT commited on
Commit
10ba43b
1 Parent(s): f1503d2

Update style.css

Browse files
Files changed (1) hide show
  1. style.css +74 -34
style.css CHANGED
@@ -1,51 +1,91 @@
1
- body {
 
2
  margin: 0;
3
- padding: 0;
4
- font-family: Arial, sans-serif;
5
- background-color: #000;
6
- color: #fff;
7
- }
8
-
9
- #chat-container {
10
- width: 100%;
11
- max-width: 600px;
12
- margin: 0 auto;
13
- border: 1px solid #444;
14
- background-color: #222;
 
 
15
  padding: 20px;
16
- border-radius: 8px;
17
  }
18
 
19
- #chat-box {
20
- height: 400px;
21
- overflow-y: auto;
22
- border: 1px solid #444;
23
- padding: 10px;
24
  margin-bottom: 10px;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
25
  background-color: #333;
26
- border-radius: 4px;
 
27
  }
28
 
29
- #user-input {
30
- width: calc(100% - 90px);
 
 
 
 
31
  padding: 10px;
32
- margin-right: 10px;
33
- border-radius: 4px;
34
- border: 1px solid #444;
35
  background-color: #333;
36
- color: #fff;
 
37
  }
38
 
39
- #send-button {
40
- width: 80px;
41
- background-color: #555;
42
- color: #fff;
43
- padding: 10px;
44
  border: none;
45
- border-radius: 4px;
46
  cursor: pointer;
47
  }
48
 
49
- #send-button:hover {
50
- background-color: #666;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
  }