Skip to content

Commit

Permalink
Update style.css
Browse files Browse the repository at this point in the history
  • Loading branch information
Brianali-codes authored Aug 5, 2024
1 parent f27515d commit 108f1a8
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions style.css
Original file line number Diff line number Diff line change
Expand Up @@ -494,3 +494,34 @@ body::-webkit-scrollbar {
#CT{
font-size: 20px;
}
#LOADER {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
background-color: rgba(0, 0, 0, 0.9);
z-index: 9999;
}

.loader {
width: 100px;
height: 100px;
border-radius: 50%;
border: 5px solid transparent;
border-top-color: #fff;
animation: spin 1s linear infinite;
}

.loader-inner {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
border-radius: 50%;
background: rgba(255, 255, 255, 0.2);
}

0 comments on commit 108f1a8

Please sign in to comment.