Yaswanth56 commited on
Commit
be847ec
·
verified ·
1 Parent(s): 1b55d17

Update static/styles.css

Browse files
Files changed (1) hide show
  1. static/styles.css +43 -43
static/styles.css CHANGED
@@ -38,29 +38,14 @@ header p {
38
  color: #888;
39
  }
40
 
41
- /* Chat Box */
42
- .chat-box {
43
- flex: 1;
44
  display: flex;
45
- flex-direction: column;
46
- }
47
-
48
- #messages {
49
  margin-bottom: 20px;
50
- padding: 15px;
51
- background-color: #F9F9F9;
52
- border-radius: 15px;
53
- overflow-y: auto;
54
- max-height: 350px;
55
- }
56
-
57
- #message-form {
58
- display: flex;
59
- gap: 15px;
60
- justify-content: space-between;
61
  }
62
 
63
- #message-form input {
64
  flex: 1;
65
  padding: 15px;
66
  font-size: 1rem;
@@ -70,40 +55,52 @@ header p {
70
  transition: all 0.3s ease;
71
  }
72
 
73
- #message-form input:focus {
74
  border-color: #6B4FE2;
75
  }
76
 
77
- #message-form button {
78
- background-color: #6B4FE2;
79
- color: white;
80
- border: none;
81
- border-radius: 50%;
82
- padding: 12px 20px;
83
- cursor: pointer;
84
- transition: all 0.3s ease;
85
  display: flex;
 
86
  align-items: center;
87
- justify-content: center;
88
  }
89
 
90
- #message-form button:hover {
91
- background-color: #5438A1;
 
 
 
 
92
  }
93
 
94
- #message-form button span {
95
- font-size: 1rem;
 
96
  }
97
 
98
- /* Footer */
99
- footer {
100
- text-align: center;
101
- font-size: 1.1rem;
102
- color: #888;
103
- padding-top: 10px;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
104
  }
105
 
106
- /* Message Styling */
107
  .user-message, .bot-message {
108
  background-color: #F1F1F1;
109
  padding: 15px;
@@ -124,7 +121,10 @@ footer {
124
  align-self: flex-start;
125
  }
126
 
127
- footer p {
128
- font-size: 1rem;
129
- color: #777;
 
 
 
130
  }
 
38
  color: #888;
39
  }
40
 
41
+ /* Input Section */
42
+ .input-section {
 
43
  display: flex;
44
+ gap: 10px;
 
 
 
45
  margin-bottom: 20px;
 
 
 
 
 
 
 
 
 
 
 
46
  }
47
 
48
+ .input-section input {
49
  flex: 1;
50
  padding: 15px;
51
  font-size: 1rem;
 
55
  transition: all 0.3s ease;
56
  }
57
 
58
+ .input-section input:focus {
59
  border-color: #6B4FE2;
60
  }
61
 
62
+ .buttons {
 
 
 
 
 
 
 
63
  display: flex;
64
+ gap: 10px;
65
  align-items: center;
 
66
  }
67
 
68
+ .button {
69
+ padding: 10px 20px;
70
+ font-size: 1rem;
71
+ border-radius: 12px;
72
+ cursor: pointer;
73
+ transition: all 0.3s ease;
74
  }
75
 
76
+ .clear-btn {
77
+ background-color: #D1D1D1;
78
+ color: #333;
79
  }
80
 
81
+ .clear-btn:hover {
82
+ background-color: #B5B5B5;
83
+ }
84
+
85
+ .submit-btn {
86
+ background-color: #FF7F32;
87
+ color: white;
88
+ }
89
+
90
+ .submit-btn:hover {
91
+ background-color: #FF5A00;
92
+ }
93
+
94
+ /* Messages Section */
95
+ .messages {
96
+ margin-top: 20px;
97
+ padding: 15px;
98
+ background-color: #F9F9F9;
99
+ border-radius: 15px;
100
+ overflow-y: auto;
101
+ max-height: 350px;
102
  }
103
 
 
104
  .user-message, .bot-message {
105
  background-color: #F1F1F1;
106
  padding: 15px;
 
121
  align-self: flex-start;
122
  }
123
 
124
+ /* Footer */
125
+ footer {
126
+ text-align: center;
127
+ font-size: 1.1rem;
128
+ color: #888;
129
+ padding-top: 10px;
130
  }