prasanth345 commited on
Commit
9da352a
·
verified ·
1 Parent(s): 3f23a97

Update static/styles.css

Browse files
Files changed (1) hide show
  1. static/styles.css +37 -25
static/styles.css CHANGED
@@ -1,47 +1,59 @@
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
  }
 
 
1
  body {
2
  font-family: Arial, sans-serif;
3
+ background-color: #f3f4f6;
4
  color: #333;
5
  }
6
 
7
+ header {
8
+ text-align: center;
9
+ padding: 1rem;
10
+ background-color: #4caf50;
11
+ color: white;
12
+ }
13
+
14
+ main {
15
  max-width: 600px;
16
  margin: 0 auto;
17
+ padding: 2rem;
18
+ }
19
+
20
+ #chat-container {
21
+ border: 1px solid #ccc;
22
  border-radius: 10px;
23
+ padding: 1rem;
24
+ background-color: white;
25
+ box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
26
  }
27
 
28
+ #chat-history {
29
+ border-bottom: 1px solid #ccc;
30
+ padding-bottom: 1rem;
31
+ margin-bottom: 1rem;
32
+ height: 300px;
33
  overflow-y: auto;
 
 
 
 
34
  }
35
 
36
+ input[type="text"] {
37
  width: calc(100% - 80px);
38
+ padding: 0.5rem;
39
+ margin-right: 1rem;
 
 
40
  }
41
 
42
  button {
43
+ padding: 0.5rem;
44
+ cursor: pointer;
45
+ }
46
+
47
+ #voice-chat {
48
+ background-color: #4caf50;
49
  color: white;
50
+ border: none;
51
  border-radius: 5px;
 
52
  }
53
 
54
+ #send-button {
55
+ background-color: #007bff;
56
+ color: white;
57
+ border: none;
58
+ border-radius: 5px;
59
  }