Update app.py
Browse files
app.py
CHANGED
|
@@ -336,6 +336,31 @@ app.index_string = '''
|
|
| 336 |
justify-content: flex-start !important;
|
| 337 |
padding-left: 12px !important;
|
| 338 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 339 |
</style>
|
| 340 |
</head>
|
| 341 |
<body>
|
|
|
|
| 336 |
justify-content: flex-start !important;
|
| 337 |
padding-left: 12px !important;
|
| 338 |
}
|
| 339 |
+
|
| 340 |
+
#model-type-filter .form-check-label {
|
| 341 |
+
position: relative;
|
| 342 |
+
padding-left: 5px;
|
| 343 |
+
}
|
| 344 |
+
|
| 345 |
+
#model-type-filter .form-check-label::first-letter {
|
| 346 |
+
font-weight: bold;
|
| 347 |
+
}
|
| 348 |
+
|
| 349 |
+
#model-type-filter .form-check-label[for*="Is Foundation"]::first-letter {
|
| 350 |
+
color: #71de5f;
|
| 351 |
+
}
|
| 352 |
+
|
| 353 |
+
#model-type-filter .form-check-label[for*="Is Finetuned"]::first-letter {
|
| 354 |
+
color: #f6b10b;
|
| 355 |
+
}
|
| 356 |
+
|
| 357 |
+
#model-type-filter .form-check-label[for*="Is Merged"]::first-letter {
|
| 358 |
+
color: #f08aff;
|
| 359 |
+
}
|
| 360 |
+
|
| 361 |
+
#model-type-filter .form-check-label[for*="proprietary"]::first-letter {
|
| 362 |
+
color: #19cdce;
|
| 363 |
+
}
|
| 364 |
</style>
|
| 365 |
</head>
|
| 366 |
<body>
|