Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
Imransdesign authored Sep 19, 2024
1 parent 79eff7f commit 77b8a3f
Show file tree
Hide file tree
Showing 2 changed files with 64 additions and 1 deletion.
10 changes: 9 additions & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,15 @@
<script src="assets/js/modernizr-2.8.3.min.js"></script>
</head>
<body>

<!-- PreLoader -->
<div class="udot_preloader">
<div class="loading-container">
<div class="loading"></div>
<div id="loading-icon"><img src="assets/images/preloader.svg"></div>
</div>
</div>
<!-- Preloader -->

<header>
<div class="desktop_menu_area">
<div class="tx_top2_relative">
Expand Down
55 changes: 55 additions & 0 deletions style.css
Original file line number Diff line number Diff line change
Expand Up @@ -202,6 +202,51 @@ span.divider_text {
padding: 9px 25px;
}

.udot_preloader{
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
z-index: 10000;
background-color: #fff3f2;
display: flex;
align-items: center;
justify-content: center;
}

.loading-container,
.loading{
height: 100px;
position: relative;
width: 100px;
border-radius: 100%;
}

.loading-container{
margin: 40px auto;
}

.loading{
border: 1px solid transparent;
border-color: transparent #ff0603 transparent #ff0603;
animation: rotate360 1.5s linear 0s infinite normal;
transform-origin: 50% 50%;
}

.loading-container:hover .loading,
.loading-container .loading{
transition: all 0.5s ease-in-out;
}

#loading-icon{
position: absolute;
top: 50%;
left: 50%;
max-width: 66px;
transform: translate(-50%, -50%);
}

hr:not([size]) {
margin: 20px 0;
border-color: #1a2d4a17;
Expand Down Expand Up @@ -2173,6 +2218,16 @@ ul.postbox__comment_ratings {
/* -----------------------------------------------------------------------------
# KeyFrames
----------------------------------------------------------------------------- */
@keyframes rotate360{
0%{
transform: rotate(0deg);
}

100%{
transform: rotate(360deg);
}
}

@keyframes upDown {
0% {
transform: translateY(0px);
Expand Down

0 comments on commit 77b8a3f

Please sign in to comment.