Spaces:
Running
on
Zero
Running
on
Zero
Update app.py
Browse files
app.py
CHANGED
@@ -73,7 +73,8 @@ def use_template():
|
|
73 |
|
74 |
# Custom CSS for button styling
|
75 |
custom_css = """
|
76 |
-
|
|
|
77 |
background-color: #4c6bfd !important;
|
78 |
border: none !important;
|
79 |
color: white !important;
|
@@ -86,9 +87,11 @@ button {
|
|
86 |
transition: background-color 0.3s ease !important;
|
87 |
}
|
88 |
|
89 |
-
button:hover {
|
90 |
background-color: #3a52cc !important;
|
91 |
}
|
|
|
|
|
92 |
footer {
|
93 |
visibility: hidden;
|
94 |
}
|
|
|
73 |
|
74 |
# Custom CSS for button styling
|
75 |
custom_css = """
|
76 |
+
/* Style buttons only */
|
77 |
+
button:not(.file-upload-button) {
|
78 |
background-color: #4c6bfd !important;
|
79 |
border: none !important;
|
80 |
color: white !important;
|
|
|
87 |
transition: background-color 0.3s ease !important;
|
88 |
}
|
89 |
|
90 |
+
button:not(.file-upload-button):hover {
|
91 |
background-color: #3a52cc !important;
|
92 |
}
|
93 |
+
|
94 |
+
/* Hide footer */
|
95 |
footer {
|
96 |
visibility: hidden;
|
97 |
}
|