geethareddy commited on
Commit
7cd611f
·
verified ·
1 Parent(s): c7bac0c

Update static/styles.css

Browse files
Files changed (1) hide show
  1. static/styles.css +32 -26
static/styles.css CHANGED
@@ -26,12 +26,18 @@ body {
26
  }
27
 
28
  .chat-header {
29
- background-color: #f28c38;
30
  color: white;
31
  padding: 10px;
32
  text-align: center;
33
  font-size: 20px;
34
  flex-shrink: 0;
 
 
 
 
 
 
35
  }
36
 
37
  .chat-messages {
@@ -83,7 +89,7 @@ body {
83
  .chat-input button {
84
  padding: 8px 15px;
85
  margin-left: 10px;
86
- background-color: #f28c38;
87
  color: white;
88
  border: none;
89
  border-radius: 5px;
@@ -160,7 +166,7 @@ body {
160
  .ingredients-list button {
161
  padding: 5px 10px;
162
  margin-top: 5px;
163
- background-color: #4CAF50; /* Updated to match the image */
164
  color: white;
165
  border: none;
166
  border-radius: 5px;
@@ -169,7 +175,27 @@ body {
169
  }
170
 
171
  .ingredients-list button:hover {
172
- background-color: #45a049; /* Darker shade for hover */
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
173
  }
174
 
175
  /* Send button styling */
@@ -177,7 +203,7 @@ body {
177
  display: block;
178
  padding: 10px 20px;
179
  margin: 10px auto 0;
180
- background-color: #000000; /* Black background as per image */
181
  color: white;
182
  border: none;
183
  border-radius: 5px;
@@ -189,27 +215,7 @@ body {
189
  }
190
 
191
  .send-button:hover {
192
- background-color: #333333; /* Darker shade on hover */
193
- }
194
-
195
- /* Remove button styling with "X" */
196
- .remove-button {
197
- padding: 2px 8px;
198
- background-color: #000000; /* Black background to match image */
199
- color: white; /* White "X" to match image */
200
- border: none;
201
- border-radius: 5px;
202
- cursor: pointer;
203
- margin-left: 10px;
204
- font-size: 16px;
205
- line-height: 1;
206
- width: 20px; /* Fixed width for square "X" */
207
- height: 20px; /* Fixed height for square "X" */
208
- text-align: center;
209
- }
210
-
211
- .remove-button:hover {
212
- background-color: #333333; /* Darker shade on hover */
213
  }
214
 
215
  /* Non-editable selected ingredients box */
 
26
  }
27
 
28
  .chat-header {
29
+ background-color: #f28c38; /* Matches the orange in the image */
30
  color: white;
31
  padding: 10px;
32
  text-align: center;
33
  font-size: 20px;
34
  flex-shrink: 0;
35
+ position: relative;
36
+ }
37
+
38
+ .chat-header::before {
39
+ content: '🍳'; /* Example icon, replace with your actual icon if needed */
40
+ margin-right: 5px;
41
  }
42
 
43
  .chat-messages {
 
89
  .chat-input button {
90
  padding: 8px 15px;
91
  margin-left: 10px;
92
+ background-color: #f28c38; /* Matches the Send button color in the image */
93
  color: white;
94
  border: none;
95
  border-radius: 5px;
 
166
  .ingredients-list button {
167
  padding: 5px 10px;
168
  margin-top: 5px;
169
+ background-color: #4CAF50;
170
  color: white;
171
  border: none;
172
  border-radius: 5px;
 
175
  }
176
 
177
  .ingredients-list button:hover {
178
+ background-color: #45a049;
179
+ }
180
+
181
+ /* Remove button styling with "X" */
182
+ .remove-button {
183
+ padding: 2px 8px;
184
+ background-color: #4CAF50;
185
+ color: white;
186
+ border: none;
187
+ border-radius: 5px;
188
+ cursor: pointer;
189
+ margin-left: 10px;
190
+ font-size: 16px;
191
+ line-height: 1;
192
+ width: 20px;
193
+ height: 20px;
194
+ text-align: center;
195
+ }
196
+
197
+ .remove-button:hover {
198
+ background-color: #45a049;
199
  }
200
 
201
  /* Send button styling */
 
203
  display: block;
204
  padding: 10px 20px;
205
  margin: 10px auto 0;
206
+ background-color: #4CAF50;
207
  color: white;
208
  border: none;
209
  border-radius: 5px;
 
215
  }
216
 
217
  .send-button:hover {
218
+ background-color: #45a049;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
219
  }
220
 
221
  /* Non-editable selected ingredients box */