Update app.py
Browse files
app.py
CHANGED
@@ -211,6 +211,31 @@ description = (
|
|
211 |
title = "⚖️ Chat with me and learn Laws! ⚖️"
|
212 |
|
213 |
# Custom CSS for styling the interface
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
214 |
|
215 |
|
216 |
# Create the Chat Interface
|
|
|
211 |
title = "⚖️ Chat with me and learn Laws! ⚖️"
|
212 |
|
213 |
# Custom CSS for styling the interface
|
214 |
+
custom_css = """
|
215 |
+
|
216 |
+
body {
|
217 |
+
font-family: "Times New Roman", serif;
|
218 |
+
}
|
219 |
+
|
220 |
+
.gradio-container {
|
221 |
+
|
222 |
+
font-family: "Times New Roman", serif;
|
223 |
+
}
|
224 |
+
|
225 |
+
.gr-button {
|
226 |
+
background-color: #007bff; /* Blue button */
|
227 |
+
color: white;
|
228 |
+
border: none;
|
229 |
+
border-radius: 5px;
|
230 |
+
font-size: 16px;
|
231 |
+
padding: 10px 20px;
|
232 |
+
cursor: pointer;
|
233 |
+
}
|
234 |
+
|
235 |
+
.gr-textbox:focus, .gr-button:focus {
|
236 |
+
outline: none; /* Remove outline focus for a cleaner look */
|
237 |
+
}
|
238 |
+
"""
|
239 |
|
240 |
|
241 |
# Create the Chat Interface
|