Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -166,29 +166,31 @@ button.selected::after{
|
|
166 |
|
167 |
|
168 |
#popup-overlay {
|
169 |
-
display: none;
|
170 |
position: fixed;
|
171 |
top: 0;
|
172 |
left: 0;
|
173 |
width: 100vw;
|
174 |
height: 100vh;
|
175 |
-
justify-content: center;
|
176 |
-
align-items: center;
|
177 |
background: rgba(0,0,0,0.5);
|
178 |
z-index: 999;
|
|
|
|
|
|
|
179 |
flex-direction: column;
|
180 |
}
|
|
|
181 |
#popup-box {
|
182 |
-
background: white;
|
183 |
padding: 20px;
|
184 |
border-radius: 10px;
|
185 |
box-shadow: 0 0 20px rgba(0,0,0,0.3);
|
186 |
width: 340px;
|
187 |
text-align: center;
|
188 |
}
|
|
|
189 |
#popup-button {
|
190 |
-
background-color: #5b65a7;
|
191 |
-
color: white;
|
192 |
padding: 10px 20px;
|
193 |
border-radius: 8px;
|
194 |
margin-top: 10px;
|
@@ -196,7 +198,7 @@ button.selected::after{
|
|
196 |
cursor: pointer;
|
197 |
}
|
198 |
#popup-button:hover {
|
199 |
-
background-color: #3c4687;
|
200 |
}
|
201 |
|
202 |
"""
|
|
|
166 |
|
167 |
|
168 |
#popup-overlay {
|
|
|
169 |
position: fixed;
|
170 |
top: 0;
|
171 |
left: 0;
|
172 |
width: 100vw;
|
173 |
height: 100vh;
|
|
|
|
|
174 |
background: rgba(0,0,0,0.5);
|
175 |
z-index: 999;
|
176 |
+
display: flex;
|
177 |
+
justify-content: center;
|
178 |
+
align-items: center;
|
179 |
flex-direction: column;
|
180 |
}
|
181 |
+
|
182 |
#popup-box {
|
183 |
+
background-color: white !important;
|
184 |
padding: 20px;
|
185 |
border-radius: 10px;
|
186 |
box-shadow: 0 0 20px rgba(0,0,0,0.3);
|
187 |
width: 340px;
|
188 |
text-align: center;
|
189 |
}
|
190 |
+
|
191 |
#popup-button {
|
192 |
+
background-color: #5b65a7 !important;
|
193 |
+
color: white !important;
|
194 |
padding: 10px 20px;
|
195 |
border-radius: 8px;
|
196 |
margin-top: 10px;
|
|
|
198 |
cursor: pointer;
|
199 |
}
|
200 |
#popup-button:hover {
|
201 |
+
background-color: #3c4687 !important;
|
202 |
}
|
203 |
|
204 |
"""
|