Spaces:
Runtime error
Runtime error
Commit
·
ee14ad3
1
Parent(s):
fa07f4a
Update app.py
Browse files
app.py
CHANGED
@@ -85,7 +85,7 @@ css = """
|
|
85 |
/* Button Styles */
|
86 |
.gr-button {
|
87 |
color: white;
|
88 |
-
background:
|
89 |
white-space: nowrap;
|
90 |
border: none;
|
91 |
padding: 10px 20px;
|
@@ -95,22 +95,23 @@ css = """
|
|
95 |
}
|
96 |
|
97 |
.gr-button:hover {
|
98 |
-
background-color: #
|
99 |
}
|
100 |
|
101 |
/* Share Button Styles */
|
102 |
#share-btn-container {
|
103 |
padding: 0.5rem !important;
|
104 |
-
background-color: #
|
105 |
justify-content: center;
|
106 |
align-items: center;
|
107 |
border-radius: 9999px !important;
|
108 |
max-width: 13rem;
|
109 |
margin: 0 auto; /* Center the container horizontally */
|
|
|
110 |
}
|
111 |
|
112 |
#share-btn-container:hover {
|
113 |
-
background-color: #
|
114 |
}
|
115 |
|
116 |
#share-btn {
|
@@ -122,6 +123,7 @@ css = """
|
|
122 |
margin: 0.5rem !important;
|
123 |
padding: 0.5rem !important;
|
124 |
}
|
|
|
125 |
/* Other Styles */
|
126 |
#gallery {
|
127 |
min-height: 22rem;
|
|
|
85 |
/* Button Styles */
|
86 |
.gr-button {
|
87 |
color: white;
|
88 |
+
background: #007bff; /* Use a primary color for the background */
|
89 |
white-space: nowrap;
|
90 |
border: none;
|
91 |
padding: 10px 20px;
|
|
|
95 |
}
|
96 |
|
97 |
.gr-button:hover {
|
98 |
+
background-color: #0056b3; /* Darken the background color on hover */
|
99 |
}
|
100 |
|
101 |
/* Share Button Styles */
|
102 |
#share-btn-container {
|
103 |
padding: 0.5rem !important;
|
104 |
+
background-color: #007bff; /* Use a primary color for the background */
|
105 |
justify-content: center;
|
106 |
align-items: center;
|
107 |
border-radius: 9999px !important;
|
108 |
max-width: 13rem;
|
109 |
margin: 0 auto; /* Center the container horizontally */
|
110 |
+
transition: background-color 0.3s;
|
111 |
}
|
112 |
|
113 |
#share-btn-container:hover {
|
114 |
+
background-color: #0056b3; /* Darken the background color on hover */
|
115 |
}
|
116 |
|
117 |
#share-btn {
|
|
|
123 |
margin: 0.5rem !important;
|
124 |
padding: 0.5rem !important;
|
125 |
}
|
126 |
+
|
127 |
/* Other Styles */
|
128 |
#gallery {
|
129 |
min-height: 22rem;
|