Update app.py
Browse files
app.py
CHANGED
|
@@ -260,7 +260,7 @@ theme = gr.themes.Ocean(
|
|
| 260 |
font=[gr.themes.GoogleFont("Inter"), "Segoe UI", "sans-serif"],
|
| 261 |
font_mono=[gr.themes.GoogleFont("Fira Code"), "monospace"]
|
| 262 |
)
|
| 263 |
-
|
| 264 |
demo_css = """
|
| 265 |
.chatbot {
|
| 266 |
font-family: 'Inter', 'Segoe UI', sans-serif !important;
|
|
@@ -282,6 +282,20 @@ demo_css = """
|
|
| 282 |
font-family: 'Inter', 'Segoe UI', sans-serif !important;
|
| 283 |
font-size: 13px !important;
|
| 284 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 285 |
"""
|
| 286 |
|
| 287 |
# Create the Gradio interface using `gr.Blocks` for a custom layout.
|
|
|
|
| 260 |
font=[gr.themes.GoogleFont("Inter"), "Segoe UI", "sans-serif"],
|
| 261 |
font_mono=[gr.themes.GoogleFont("Fira Code"), "monospace"]
|
| 262 |
)
|
| 263 |
+
DOX_LOGO = "https://raw.githubusercontent.com/AzzamAlnatsheh/DDS_BuildingAIChallenge/main/Dox_Image.png"
|
| 264 |
demo_css = """
|
| 265 |
.chatbot {
|
| 266 |
font-family: 'Inter', 'Segoe UI', sans-serif !important;
|
|
|
|
| 282 |
font-family: 'Inter', 'Segoe UI', sans-serif !important;
|
| 283 |
font-size: 13px !important;
|
| 284 |
}
|
| 285 |
+
|
| 286 |
+
.main-container {
|
| 287 |
+
max-width: 1250px;
|
| 288 |
+
margin: auto;
|
| 289 |
+
}
|
| 290 |
+
|
| 291 |
+
.header-card {
|
| 292 |
+
background: #020E28;
|
| 293 |
+
border-radius: 24px;
|
| 294 |
+
padding: 26px;
|
| 295 |
+
box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
|
| 296 |
+
border: 1px solid #e5e7eb;
|
| 297 |
+
margin-bottom: 20px;
|
| 298 |
+
}
|
| 299 |
"""
|
| 300 |
|
| 301 |
# Create the Gradio interface using `gr.Blocks` for a custom layout.
|