Coverage checking and deleted files gone wrong all style changed now all codes re updated

This commit is contained in:
akash 2025-09-30 21:55:21 +05:30
parent 5f8a7c7c97
commit a1fd0366a9
5 changed files with 12564 additions and 38 deletions

View File

@ -3667,6 +3667,35 @@ to {
}
}
.page-banner .icon-one,
.main-banner .icon-one{
animation-name: rotateme;
animation-duration: 7s;
animation-iteration-count: infinite;
animation-timing-function: linear;
-webkit-animation-name: rotateme;
-webkit-animation-duration: 7s;
-webkit-animation-iteration-count: infinite;
-webkit-animation-timing-function: linear;
-moz-animation-name: rotateme;
-moz-animation-duration: 7s;
-moz-animation-iteration-count: infinite;
-moz-animation-timing-function: linear;
-ms-animation-name: rotateme;
-ms-animation-duration: 7s;
-ms-animation-iteration-count: infinite;
-ms-animation-timing-function: linear;
-o-animation-name: rotateme;
-o-animation-duration: 7s;
-o-animation-iteration-count: infinite;
-o-animation-timing-function: linear;
}
.how-it-works:before,
.main-banner .icon-six,
.main-banner .icon-two,

File diff suppressed because it is too large Load Diff

View File

@ -1,3 +1,10 @@
/* template-color */
.handle-preloader{
background: #EC4E4F;
}
.preloader-close{
color: #EC4E4F;
}

File diff suppressed because it is too large Load Diff

View File

@ -492,11 +492,6 @@
color: #bc0000 !important;
}
.theme-btn.btn-one-new-raw {
background: #fff !important;
color: #bc0000 !important;
}
.theme-btn.btn-two {
background: var(--secondary-color);
}
@ -1177,12 +1172,6 @@
color: #fff;
}
.rating li i {
color: #FFDF00;
/* gold/yellow */
}
@ -1310,7 +1299,7 @@
.header-top .top-inner .social-links {
justify-content: center;
gap: 18px;
gap: 20px;
}
/* Refuge */
@ -3699,6 +3688,28 @@
}
}
.loader-wrap {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: #ffffff;
display: flex;
align-items: center;
justify-content: center;
z-index: 9999;
}
.preloader {
text-align: center;
}
.preloader-icon {
font-size: 50px;
animation: spin 1.5s linear infinite;
}
@keyframes spin {
0% {
transform: rotate(0deg);
@ -3730,15 +3741,3 @@
margin: 0px 10px !important;
}
}
.color-white {
color: #fff !important;
}
.pagination-wrapper .pagination li a img {
transition: filter 0.3s ease;
}
.pagination-wrapper .pagination li a:hover img {
filter: brightness(0) invert(1);
}