Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -83,7 +83,43 @@ custom_css = """
|
|
| 83 |
background-color: #f1f8ff;
|
| 84 |
margin-bottom: 15px;
|
| 85 |
}
|
| 86 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 87 |
|
| 88 |
"""
|
| 89 |
|
|
|
|
| 83 |
background-color: #f1f8ff;
|
| 84 |
margin-bottom: 15px;
|
| 85 |
}
|
| 86 |
+
|
| 87 |
+
.gr-button-primary {
|
| 88 |
+
background-color: #007acc !important;
|
| 89 |
+
color: white !important;
|
| 90 |
+
border-radius: 10px !important;
|
| 91 |
+
font-size: 18px !important;
|
| 92 |
+
font-weight: bold !important;
|
| 93 |
+
padding: 10px 20px !important;
|
| 94 |
+
font-family: 'Montserrat', sans-serif !important;
|
| 95 |
+
transition: background-color 0.3s ease !important;
|
| 96 |
+
}
|
| 97 |
+
.gr-button-primary:hover {
|
| 98 |
+
background-color: #005f99 !important;
|
| 99 |
+
}
|
| 100 |
+
.gr-button-secondary {
|
| 101 |
+
background-color: #f44336 !important;
|
| 102 |
+
color: white !important;
|
| 103 |
+
border-radius: 10px !important;
|
| 104 |
+
font-size: 18px !important;
|
| 105 |
+
font-weight: bold !important;
|
| 106 |
+
padding: 10px 20px !important;
|
| 107 |
+
font-family: 'Montserrat', sans-serif !important;
|
| 108 |
+
transition: background-color 0.3s ease !important;
|
| 109 |
+
}
|
| 110 |
+
.gr-button-secondary:hover {
|
| 111 |
+
background-color: #c62828 !important;
|
| 112 |
+
}
|
| 113 |
+
.gr-output {
|
| 114 |
+
background-color: #e0f7fa;
|
| 115 |
+
border: 2px solid #007acc;
|
| 116 |
+
border-radius: 10px;
|
| 117 |
+
padding: 15px;
|
| 118 |
+
font-size: 16px;
|
| 119 |
+
font-family: 'Roboto', sans-serif;
|
| 120 |
+
font-weight: bold;
|
| 121 |
+
color: #00796b;
|
| 122 |
+
}
|
| 123 |
|
| 124 |
"""
|
| 125 |
|