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, .how-it-works:before,
.main-banner .icon-six, .main-banner .icon-six,
.main-banner .icon-two, .main-banner .icon-two,
@ -3750,4 +3779,4 @@ service_hexagon_2{0%{-webkit-transform:rotateY(0deg);transform:rotateY(0deg)}100
service_hexagon{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@-moz-keyframes service_hexagon{0%{-moz-transform:rotate(0deg);transform:rotate(0deg)}100%{-moz-transform:rotate(360deg);transform:rotate(360deg)}}@-o-keyframes service_hexagon{0%{-o-transform:rotate(0deg);transform:rotate(0deg)}100%{-o-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes service_hexagon{0%{-webkit-transform:rotate(0deg);-moz-transform:rotate(0deg);-o-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(360deg);-moz-transform:rotate(360deg);-o-transform:rotate(360deg);transform:rotate(360deg)}} service_hexagon{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@-moz-keyframes service_hexagon{0%{-moz-transform:rotate(0deg);transform:rotate(0deg)}100%{-moz-transform:rotate(360deg);transform:rotate(360deg)}}@-o-keyframes service_hexagon{0%{-o-transform:rotate(0deg);transform:rotate(0deg)}100%{-o-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes service_hexagon{0%{-webkit-transform:rotate(0deg);-moz-transform:rotate(0deg);-o-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(360deg);-moz-transform:rotate(360deg);-o-transform:rotate(360deg);transform:rotate(360deg)}}
@-webkit-keyframes animateBubble{0%{margin-top:20%}100%{margin-top:-30%}}@-moz-keyframes animateBubble{0%{margin-top:20%}100%{margin-top:-30%}}@keyframes animateBubble{0%{margin-top:20%}100%{margin-top:-30%}}@-webkit-keyframes sideWays{0%{margin-left:0}100%{margin-left:25px}}@-moz-keyframes sideWays{0%{margin-left:0}100%{margin-left:25px}}@keyframes sideWays{0%{margin-left:0}100%{margin-left:25px}} @-webkit-keyframes animateBubble{0%{margin-top:20%}100%{margin-top:-30%}}@-moz-keyframes animateBubble{0%{margin-top:20%}100%{margin-top:-30%}}@keyframes animateBubble{0%{margin-top:20%}100%{margin-top:-30%}}@-webkit-keyframes sideWays{0%{margin-left:0}100%{margin-left:25px}}@-moz-keyframes sideWays{0%{margin-left:0}100%{margin-left:25px}}@keyframes sideWays{0%{margin-left:0}100%{margin-left:25px}}

File diff suppressed because it is too large Load Diff

View File

@ -1,3 +1,10 @@
/* template-color */ /* 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; color: #bc0000 !important;
} }
.theme-btn.btn-one-new-raw {
background: #fff !important;
color: #bc0000 !important;
}
.theme-btn.btn-two { .theme-btn.btn-two {
background: var(--secondary-color); background: var(--secondary-color);
} }
@ -1177,12 +1172,6 @@
color: #fff; color: #fff;
} }
.rating li i {
color: #FFDF00;
/* gold/yellow */
}
@ -1310,7 +1299,7 @@
.header-top .top-inner .social-links { .header-top .top-inner .social-links {
justify-content: center; justify-content: center;
gap: 18px; gap: 20px;
} }
/* Refuge */ /* 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 { @keyframes spin {
0% { 0% {
transform: rotate(0deg); transform: rotate(0deg);
@ -3725,20 +3736,8 @@
} }
} }
@media(max-width:1000px) { @media(max-width:1000px) {
.main-menu .navigation>li { .main-menu .navigation>li {
margin: 0px 10px !important; 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);
} }