yasir
commited on
Update index.html
Browse files- index.html +33 -2
index.html
CHANGED
|
@@ -377,7 +377,6 @@ font-family: 'Barlow Condensed';
|
|
| 377 |
line-height: 1.2;
|
| 378 |
font-size: 24px;
|
| 379 |
}
|
| 380 |
-
|
| 381 |
.ad{
|
| 382 |
display: flex;
|
| 383 |
flex-direction: row;
|
|
@@ -391,7 +390,39 @@ font-family: 'Barlow Condensed';
|
|
| 391 |
}
|
| 392 |
#imshow{
|
| 393 |
margin-bottom: 12px;}
|
| 394 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 395 |
</style>
|
| 396 |
</head>
|
| 397 |
<body>
|
|
|
|
| 377 |
line-height: 1.2;
|
| 378 |
font-size: 24px;
|
| 379 |
}
|
|
|
|
| 380 |
.ad{
|
| 381 |
display: flex;
|
| 382 |
flex-direction: row;
|
|
|
|
| 390 |
}
|
| 391 |
#imshow{
|
| 392 |
margin-bottom: 12px;}
|
| 393 |
+
#imshow progress {
|
| 394 |
+
margin-left: auto;
|
| 395 |
+
margin-right: auto;
|
| 396 |
+
display: block; /* Ensure the progress bar is treated as a block-level element */
|
| 397 |
+
height: 25px;
|
| 398 |
+
width: 250px;
|
| 399 |
+
}
|
| 400 |
+
#imshow {
|
| 401 |
+
text-align: center;
|
| 402 |
+
}
|
| 403 |
+
#imshow {
|
| 404 |
+
display: flex;
|
| 405 |
+
justify-content: center; /* Align horizontally */
|
| 406 |
+
align-items: center; /* Align vertically */
|
| 407 |
+
|
| 408 |
+
}
|
| 409 |
+
#imshow h5{
|
| 410 |
+
display: block;
|
| 411 |
+
}
|
| 412 |
+
progress::-webkit-progress-bar {
|
| 413 |
+
background-color: rgb(0,5,60);
|
| 414 |
+
}
|
| 415 |
+
progress::-webkit-progress-value {
|
| 416 |
+
background-color: rgb(0, 255, 149);
|
| 417 |
+
}
|
| 418 |
+
progress {
|
| 419 |
+
background-color: rgb(0,5,60);
|
| 420 |
+
}
|
| 421 |
+
progress::-moz-progress-bar {
|
| 422 |
+
background-color: rgb(0, 255, 149); }
|
| 423 |
+
progress {
|
| 424 |
+
background: rgb(0,10,60);
|
| 425 |
+
}
|
| 426 |
</style>
|
| 427 |
</head>
|
| 428 |
<body>
|