Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -295,10 +295,16 @@ label, .gr-checkbox-label span { /* Target labels and checkbox labels */
|
|
295 |
.gr-block .gr-box > div > p, .gr-block .gr-box > div > span {
|
296 |
color: #E0E0E0 !important;
|
297 |
}
|
298 |
-
/*
|
299 |
-
button.gr-button-primary {
|
300 |
-
|
301 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
302 |
}
|
303 |
"""
|
304 |
|
|
|
295 |
.gr-block .gr-box > div > p, .gr-block .gr-box > div > span {
|
296 |
color: #E0E0E0 !important;
|
297 |
}
|
298 |
+
/* Style for the Reset Button */
|
299 |
+
button.gr-button-primary.gr-button-lg { /* Target primary large buttons (default for gr.Button) */
|
300 |
+
background-color: #513B8B !important; /* Your desired background color */
|
301 |
+
color: #FFFFFF !important; /* White text color */
|
302 |
+
border-color: #513B8B !important; /* Match border color to background */
|
303 |
+
}
|
304 |
+
|
305 |
+
button.gr-button-primary.gr-button-lg:hover {
|
306 |
+
background-color: #9b87f5 !important; /* Hover background color */
|
307 |
+
border-color: #9b87f5 !important; /* Match hover border color */
|
308 |
}
|
309 |
"""
|
310 |
|