Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
|
@@ -221,24 +221,28 @@ css = """
|
|
| 221 |
background-repeat: no-repeat;
|
| 222 |
background-position: center;
|
| 223 |
background-attachment: fixed;
|
|
|
|
| 224 |
}
|
| 225 |
-
|
| 226 |
-
|
|
|
|
|
|
|
|
|
|
| 227 |
}
|
| 228 |
-
|
| 229 |
#app-container {
|
| 230 |
background-color: rgba(255, 255, 255, 0.001); /* Corrected to make semi-transparent */
|
| 231 |
max-width: 600px;
|
| 232 |
margin-left: auto;
|
| 233 |
margin-right: auto;
|
| 234 |
margin-bottom: 10px;
|
| 235 |
-
border-radius:
|
| 236 |
box-shadow: 0 0 10px rgba(0,0,0,0.1); /* Adjusted shadow opacity */
|
| 237 |
}
|
| 238 |
|
| 239 |
#title-container {
|
| 240 |
display: flex;
|
| 241 |
-
align-items: center
|
|
|
|
| 242 |
justify-content: center;
|
| 243 |
}
|
| 244 |
|
|
@@ -268,7 +272,7 @@ body {
|
|
| 268 |
max-width: 600px;
|
| 269 |
margin-left: auto;
|
| 270 |
margin-right: auto;
|
| 271 |
-
padding:
|
| 272 |
border-radius: 25px;
|
| 273 |
box-shadow: 0 0 10px rgba(0,0,0,0.001);
|
| 274 |
}
|
|
|
|
| 221 |
background-repeat: no-repeat;
|
| 222 |
background-position: center;
|
| 223 |
background-attachment: fixed;
|
| 224 |
+
color:#000;
|
| 225 |
}
|
| 226 |
+
.dark {
|
| 227 |
+
background-fill-primary: #000;
|
| 228 |
+
}
|
| 229 |
+
.hide-container {
|
| 230 |
+
margin-top;-2px;
|
| 231 |
}
|
|
|
|
| 232 |
#app-container {
|
| 233 |
background-color: rgba(255, 255, 255, 0.001); /* Corrected to make semi-transparent */
|
| 234 |
max-width: 600px;
|
| 235 |
margin-left: auto;
|
| 236 |
margin-right: auto;
|
| 237 |
margin-bottom: 10px;
|
| 238 |
+
border-radius: 125px;
|
| 239 |
box-shadow: 0 0 10px rgba(0,0,0,0.1); /* Adjusted shadow opacity */
|
| 240 |
}
|
| 241 |
|
| 242 |
#title-container {
|
| 243 |
display: flex;
|
| 244 |
+
align-items: center
|
| 245 |
+
margin-bottom:10px;
|
| 246 |
justify-content: center;
|
| 247 |
}
|
| 248 |
|
|
|
|
| 272 |
max-width: 600px;
|
| 273 |
margin-left: auto;
|
| 274 |
margin-right: auto;
|
| 275 |
+
padding-top: 10px;
|
| 276 |
border-radius: 25px;
|
| 277 |
box-shadow: 0 0 10px rgba(0,0,0,0.001);
|
| 278 |
}
|