Update app.py
Browse files
app.py
CHANGED
|
@@ -353,6 +353,33 @@ footer p {
|
|
| 353 |
box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
|
| 354 |
}
|
| 355 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 356 |
/* Buttons Styling */
|
| 357 |
#submission-buttons button {
|
| 358 |
padding: 12px 25px;
|
|
|
|
| 353 |
box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
|
| 354 |
}
|
| 355 |
|
| 356 |
+
/* submiton */
|
| 357 |
+
/* Submission Section Styling */
|
| 358 |
+
.submission-section {
|
| 359 |
+
border: 3px solid #6a1b9a; /* Purple border */
|
| 360 |
+
border-radius: 10px; /* Rounded corners */
|
| 361 |
+
padding: 20px; /* Inner spacing */
|
| 362 |
+
background-color: #f9f7fc; /* Light purple background */
|
| 363 |
+
margin-bottom: 20px;
|
| 364 |
+
}
|
| 365 |
+
|
| 366 |
+
/* File Upload Styling */
|
| 367 |
+
#file-upload {
|
| 368 |
+
border: 2px solid #6a1b9a; /* Purple border */
|
| 369 |
+
border-radius: 8px; /* Rounded corners */
|
| 370 |
+
}
|
| 371 |
+
|
| 372 |
+
/* Model Name Input Styling */
|
| 373 |
+
#model-name-input {
|
| 374 |
+
border: 2px solid #6a1b9a; /* Purple border */
|
| 375 |
+
border-radius: 8px;
|
| 376 |
+
}
|
| 377 |
+
|
| 378 |
+
/* Overall Accuracy Styling */
|
| 379 |
+
#overall-accuracy-display {
|
| 380 |
+
border: 2px solid #6a1b9a; /* Purple border */
|
| 381 |
+
border-radius: 8px;
|
| 382 |
+
}
|
| 383 |
/* Buttons Styling */
|
| 384 |
#submission-buttons button {
|
| 385 |
padding: 12px 25px;
|