prasanth345 commited on
Commit
97afcd0
·
verified ·
1 Parent(s): 86dc598

Create static/styles.css

Browse files
Files changed (1) hide show
  1. static/styles.css +47 -0
static/styles.css ADDED
@@ -0,0 +1,47 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ /* Existing CSS styles from previous code */
2
+ body {
3
+ font-family: Arial, sans-serif;
4
+ background-color: #f0f0f0;
5
+ color: #333;
6
+ }
7
+
8
+ #chat-container,
9
+ #voice-container {
10
+ max-width: 600px;
11
+ margin: 0 auto;
12
+ padding: 20px;
13
+ background-color: white;
14
+ border-radius: 10px;
15
+ box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
16
+ }
17
+
18
+ #chat-window,
19
+ #voice-result {
20
+ height: 400px;
21
+ overflow-y: auto;
22
+ margin-bottom: 20px;
23
+ border: 1px solid #ccc;
24
+ padding: 10px;
25
+ background-color: #f9f9f9;
26
+ }
27
+
28
+ #user-input {
29
+ width: calc(100% - 80px);
30
+ padding: 10px;
31
+ margin-right: 10px;
32
+ border: 1px solid #ccc;
33
+ border-radius: 5px;
34
+ }
35
+
36
+ button {
37
+ padding: 10px 15px;
38
+ border: none;
39
+ background-color: #007bff;
40
+ color: white;
41
+ border-radius: 5px;
42
+ cursor: pointer;
43
+ }
44
+
45
+ button:hover {
46
+ background-color: #0056b3;
47
+ }