prasanth345 commited on
Commit
6170ab1
·
verified ·
1 Parent(s): 0a2034a

Update static/styles.css

Browse files
Files changed (1) hide show
  1. static/styles.css +19 -43
static/styles.css CHANGED
@@ -1,59 +1,35 @@
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
  }
 
1
  body {
2
  font-family: Arial, sans-serif;
3
+ background-color: #f0f0f0;
4
+ padding: 20px;
5
+ margin: 0;
6
  }
7
 
8
+ #chatbot-container, #voice-container {
9
+ margin-bottom: 20px;
 
 
 
10
  }
11
 
12
+ input[type="text"], input[type="file"] {
13
+ padding: 10px;
14
+ width: 300px;
15
+ margin-right: 10px;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
16
  }
17
 
18
  button {
19
+ padding: 10px;
20
+ background-color: #007bff;
21
+ color: white;
22
+ border: none;
23
  cursor: pointer;
24
  }
25
 
26
+ button:hover {
27
+ background-color: #0056b3;
 
 
 
28
  }
29
 
30
+ #chat-history, #voice-response {
31
+ background-color: white;
32
+ padding: 10px;
 
33
  border-radius: 5px;
34
+ margin-bottom: 10px;
35
  }