Update app.py
Browse files
app.py
CHANGED
@@ -438,6 +438,9 @@ def create_gradio_app():
|
|
438 |
|
439 |
# Custom CSS for better styling
|
440 |
custom_css = """
|
|
|
|
|
|
|
441 |
.main-header {
|
442 |
text-align: center;
|
443 |
margin-bottom: 2rem;
|
@@ -446,12 +449,15 @@ def create_gradio_app():
|
|
446 |
font-weight: bold;
|
447 |
text-align: center;
|
448 |
letter-spacing: -0.025em;
|
449 |
-
|
450 |
/* Gradient masking */
|
451 |
background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
|
452 |
-webkit-background-clip: text;
|
453 |
-webkit-text-fill-color: transparent;
|
454 |
}
|
|
|
|
|
|
|
455 |
}
|
456 |
"""
|
457 |
|
|
|
438 |
|
439 |
# Custom CSS for better styling
|
440 |
custom_css = """
|
441 |
+
h2{
|
442 |
+
margin: 1.5rem initial;
|
443 |
+
}
|
444 |
.main-header {
|
445 |
text-align: center;
|
446 |
margin-bottom: 2rem;
|
|
|
449 |
font-weight: bold;
|
450 |
text-align: center;
|
451 |
letter-spacing: -0.025em;
|
452 |
+
margin-bottom: 1rem;
|
453 |
/* Gradient masking */
|
454 |
background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
|
455 |
-webkit-background-clip: text;
|
456 |
-webkit-text-fill-color: transparent;
|
457 |
}
|
458 |
+
p{
|
459 |
+
font-size: 1.25rem;
|
460 |
+
}
|
461 |
}
|
462 |
"""
|
463 |
|