Skip to content

Commit

Permalink
Update Main.css
Browse files Browse the repository at this point in the history
  • Loading branch information
CodeHarshly committed Oct 21, 2023
1 parent 3734399 commit 1f9e71f
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions css/Main.css
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,36 @@ html{
body{
background-color: #ffffff;
}

/*******************Pre Loader *****************/
.preloader {
position: fixed;
width: 100%;
height: 100%;
background: #ffffff;
z-index: 9999;
display: flex;
justify-content: center;
align-items: center;
}

.loader {
border: 5px solid #f3f3f3;
border-top: 5px solid #3498db;
border-radius: 50%;
width: 50px;
height: 50px;
animation: spin 2s linear infinite;
}

@keyframes spin {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
}
body.loaded .preloader {
display: none;
}

/********************Header************************/
.header {
position: fixed;
Expand Down

0 comments on commit 1f9e71f

Please sign in to comment.