anshharora commited on
Commit
e68d4c4
·
verified ·
1 Parent(s): 56ad1e0

Update static/styles.css

Browse files
Files changed (1) hide show
  1. static/styles.css +205 -234
static/styles.css CHANGED
@@ -1,234 +1,205 @@
1
- * {
2
- margin: 0;
3
- padding: 0;
4
- box-sizing: border-box;
5
- }
6
-
7
-
8
-
9
- body {
10
- font-family: Arial, sans-serif;
11
- background-color: #181818; /* Dark background */
12
- color: #e0e0e0; /* Light text color */
13
- height: 100vh;
14
-
15
-
16
- }
17
- .Luna{
18
- padding: 10px;
19
- margin-left: 35px;
20
- }
21
- a:link, a:visited {
22
- text-decoration: none;
23
- color: #e0e0e0;
24
- display: inline-block;
25
- }
26
-
27
- a:hover, a:active {
28
- color:blueviolet;
29
- }
30
- .chat-container {
31
-
32
- margin: 10px 20px 30px 40px;
33
- height: 89vh;
34
- width: 192vh;
35
- background-color: #242424; /* Dark background */
36
- border-radius: 12px;
37
- box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
38
- display: flex;
39
- flex-direction: column;
40
- }
41
-
42
- .chat-header {
43
- padding: 1rem;
44
- border-bottom: 1px solid #444; /* Darker separator */
45
- display: flex;
46
- justify-content: space-between;
47
- align-items: center;
48
- }
49
-
50
- .bot-profile {
51
- display: flex;
52
- align-items: center;
53
- gap: 10px;
54
- }
55
-
56
- .bot-avatar {
57
- width: 40px;
58
- height: 40px;
59
- border-radius: 50%;
60
- }
61
-
62
- .bot-name {
63
- font-weight: bold;
64
- font-size: 1.1rem;
65
- color: #f0f2f5; /* Light text */
66
- }
67
-
68
- .voice-controls {
69
- display: flex;
70
- gap: 10px;
71
- }
72
-
73
- .voice-button {
74
- background: none;
75
- border: none;
76
- cursor: pointer;
77
- padding: 8px;
78
- border-radius: 50%;
79
- transition: background-color 0.3s;
80
- color: #f0f2f5; /* Light text */
81
- }
82
-
83
- .voice-button:hover {
84
- background-color: #444; /* Dark hover */
85
- }
86
-
87
- .chat-messages {
88
- flex: 1;
89
- overflow-y: auto;
90
- padding: 1rem;
91
- }
92
-
93
- .message {
94
- margin-bottom: 1rem;
95
- display: flex;
96
- align-items: flex-start;
97
- gap: 10px;
98
- }
99
-
100
- .message.user {
101
- flex-direction: row-reverse;
102
- }
103
-
104
- .message-content {
105
- max-width: 70%;
106
- padding: 0.8rem;
107
- border-radius: 12px;
108
- position: relative;
109
- font-size: 20px;
110
- }
111
-
112
- .user .message-content {
113
- background-color: #006acc; /* Blue background */
114
- color: white;
115
- border-radius: 18px 18px 4px 18px;
116
- }
117
-
118
- .bot .message-content {
119
- background-color: #333; /* Dark message background */
120
- color: #f0f2f5; /* Light text */
121
- border-radius: 18px 18px 18px 4px;
122
- }
123
-
124
- .chat-input-container {
125
- padding: 1rem;
126
- border-top: 1px solid #444; /* Dark separator */
127
- position: relative;
128
- }
129
-
130
- .chat-input-container textarea {
131
- width: 100%;
132
- padding: 0.8rem 80px 0.8rem 1rem;
133
- border: 1px solid #444; /* Dark border */
134
- border-radius: 20px;
135
- resize: none;
136
- height: 50px;
137
- font-size: 1rem;
138
- background-color: #333; /* Dark background for input */
139
- color: #f0f2f5; /* Light text */
140
- }
141
-
142
- .input-buttons {
143
- position: absolute;
144
- right: 1.5rem;
145
- bottom: 1.7rem;
146
- display: flex;
147
- gap: 8px;
148
- }
149
-
150
- .voice-input-button, .send-button {
151
- background: none;
152
- border: none;
153
- cursor: pointer;
154
- padding: 8px;
155
- color: #006acc; /* Blue color */
156
- transition: color 0.3s;
157
- }
158
-
159
- .voice-input-button:hover, .send-button:hover {
160
- color: #004a77; /* Darker blue on hover */
161
- }
162
-
163
- .message-avatar {
164
- width: 36px;
165
- height: 36px;
166
- border-radius: 50%;
167
- display: flex;
168
- align-items: center;
169
- justify-content: center;
170
- float: right;
171
- display: none;
172
- }
173
-
174
- .message-avatar i {
175
- font-size: 1.2rem;
176
- color: #006acc; /* Blue icon */
177
- }
178
-
179
- /* Add these styles to your existing CSS */
180
- .message-speaker {
181
- background: none;
182
- border: none;
183
- color: #006acc;
184
- cursor: pointer;
185
- padding: 4px;
186
- margin-left: 8px;
187
- transition: color 0.3s;
188
- }
189
-
190
- .message-speaker:hover {
191
- color: #004a77;
192
- }
193
-
194
- .message-speaker.speaking i {
195
- color: #ff4444;
196
- }
197
-
198
- .user-message .message-avatar i {
199
- color: #f0f2f5; /* Light icon for user messages */
200
- }
201
-
202
- .listening .fa-microphone {
203
- color: #ff4444;
204
- animation: pulse 1.5s infinite;
205
- }
206
-
207
- @keyframes pulse {
208
- 0% { transform: scale(1); }
209
- 50% { transform: scale(1.2); }
210
- 100% { transform: scale(1); }
211
- }
212
-
213
- .typing-indicator {
214
- display: flex;
215
- gap: 4px;
216
- padding: 8px;
217
- }
218
-
219
- .typing-dot {
220
- width: 8px;
221
- height: 8px;
222
- background-color: #90949c; /* Gray typing dots */
223
- border-radius: 50%;
224
- animation: typing 1.4s infinite ease-in-out;
225
- }
226
-
227
- .typing-dot:nth-child(1) { animation-delay: 200ms; }
228
- .typing-dot:nth-child(2) { animation-delay: 300ms; }
229
- .typing-dot:nth-child(3) { animation-delay: 400ms; }
230
-
231
- @keyframes typing {
232
- 0%, 100% { transform: translateY(0); }
233
- 50% { transform: translateY(-10px); }
234
- }
 
1
+ /* Base styles */
2
+ * {
3
+ margin: 0;
4
+ padding: 0;
5
+ box-sizing: border-box;
6
+ }
7
+
8
+ body {
9
+ font-family: Arial, sans-serif;
10
+ background-color: #181818;
11
+ color: #e0e0e0;
12
+ min-height: 100vh;
13
+ display: flex;
14
+ flex-direction: column;
15
+ }
16
+
17
+ /* Chat container */
18
+ .chat-container {
19
+ margin: 20px auto;
20
+ width: 95%;
21
+ max-width: 1200px;
22
+ height: 90vh;
23
+ background-color: #242424;
24
+ border-radius: 12px;
25
+ box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
26
+ display: flex;
27
+ flex-direction: column;
28
+ }
29
+
30
+ /* Messages section */
31
+ .chat-messages {
32
+ flex: 1;
33
+ overflow-y: auto;
34
+ padding: 1rem;
35
+ display: flex;
36
+ flex-direction: column;
37
+ }
38
+
39
+ .message {
40
+ display: flex;
41
+ align-items: flex-start;
42
+ margin-bottom: 1rem;
43
+ width: 100%;
44
+ }
45
+
46
+ .message.user {
47
+ justify-content: flex-end;
48
+ }
49
+
50
+ .message-content {
51
+ max-width: 70%;
52
+ padding: 0.8rem;
53
+ border-radius: 12px;
54
+ font-size: clamp(14px, 2vw, 20px);
55
+ word-wrap: break-word;
56
+ }
57
+
58
+ .user .message-content {
59
+ background-color: #006acc;
60
+ color: white;
61
+ border-radius: 18px 18px 4px 18px;
62
+ }
63
+
64
+ .bot .message-content {
65
+ background-color: #333;
66
+ color: #f0f2f5;
67
+ border-radius: 18px 18px 18px 4px;
68
+ }
69
+
70
+ /* Input section */
71
+ .chat-input-container {
72
+ padding: 1rem;
73
+ border-top: 1px solid #444;
74
+ position: relative;
75
+ }
76
+
77
+ .chat-input-container textarea {
78
+ width: 100%;
79
+ padding: 0.8rem 60px 0.8rem 1rem;
80
+ border: 1px solid #444;
81
+ border-radius: 20px;
82
+ resize: none;
83
+ height: 50px;
84
+ font-size: clamp(14px, 1.5vw, 16px);
85
+ background-color: #333;
86
+ color: #f0f2f5;
87
+ }
88
+
89
+ /* Header section */
90
+ .chat-header {
91
+ padding: 1rem;
92
+ border-bottom: 1px solid #444;
93
+ display: flex;
94
+ justify-content: space-between;
95
+ align-items: center;
96
+ }
97
+
98
+ .bot-profile {
99
+ display: flex;
100
+ align-items: center;
101
+ gap: 10px;
102
+ }
103
+
104
+ .bot-avatar {
105
+ width: clamp(30px, 4vw, 40px);
106
+ height: clamp(30px, 4vw, 40px);
107
+ border-radius: 50%;
108
+ }
109
+
110
+ .bot-name {
111
+ font-weight: bold;
112
+ font-size: clamp(16px, 2vw, 1.1rem);
113
+ color: #f0f2f5;
114
+ }
115
+
116
+ /* Responsive adjustments */
117
+ @media screen and (max-width: 768px) {
118
+ .chat-container {
119
+ margin: 10px;
120
+ width: calc(100% - 20px);
121
+ height: calc(100vh - 20px);
122
+ }
123
+
124
+ .message-content {
125
+ max-width: 85%;
126
+ }
127
+
128
+ .input-buttons {
129
+ right: 1rem;
130
+ bottom: 1.5rem;
131
+ }
132
+ }
133
+
134
+ @media screen and (max-width: 480px) {
135
+ .chat-container {
136
+ margin: 5px;
137
+ width: calc(100% - 10px);
138
+ border-radius: 8px;
139
+ }
140
+
141
+ .message-content {
142
+ max-width: 90%;
143
+ padding: 0.6rem;
144
+ }
145
+
146
+ .chat-header {
147
+ padding: 0.8rem;
148
+ }
149
+
150
+ .chat-input-container {
151
+ padding: 0.8rem;
152
+ }
153
+
154
+ .voice-controls {
155
+ gap: 5px;
156
+ }
157
+
158
+ .input-buttons {
159
+ gap: 5px;
160
+ }
161
+ }
162
+
163
+ /* Button styles */
164
+ .input-buttons {
165
+ position: absolute;
166
+ right: 1.5rem;
167
+ bottom: 1.7rem;
168
+ display: flex;
169
+ gap: 8px;
170
+ }
171
+
172
+ .voice-input-button,
173
+ .send-button {
174
+ background: none;
175
+ border: none;
176
+ cursor: pointer;
177
+ padding: 8px;
178
+ color: #006acc;
179
+ transition: color 0.3s;
180
+ }
181
+
182
+ .voice-input-button:hover,
183
+ .send-button:hover {
184
+ color: #004a77;
185
+ }
186
+
187
+ /* Animation styles */
188
+ .typing-indicator {
189
+ display: flex;
190
+ gap: 4px;
191
+ padding: 8px;
192
+ }
193
+
194
+ .typing-dot {
195
+ width: 8px;
196
+ height: 8px;
197
+ background-color: #90949c;
198
+ border-radius: 50%;
199
+ animation: typing 1.4s infinite ease-in-out;
200
+ }
201
+
202
+ @keyframes typing {
203
+ 0%, 100% { transform: translateY(0); }
204
+ 50% { transform: translateY(-10px); }
205
+ }