Skip to content

Commit

Permalink
loader css added
Browse files Browse the repository at this point in the history
  • Loading branch information
Intellimixiopce authored Aug 1, 2022
1 parent 99d754e commit 9f9fc69
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions assets/css/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -2280,3 +2280,26 @@ section {
opacity: 0.6;

}
#loader {
border: 16px solid #f3f3f3;
/* Light grey */
/* border-top: 16px solid #3498db; */
/* Blue */
border-radius: 50%;
width: 50px;
height: 50px;
animation: spin 2s linear infinite;
border-top: 16px solid blue;
border-bottom: 16px solid blue;
margin: 50vh auto;
}

@keyframes spin {
0% {
transform: rotate(0deg);
}

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

0 comments on commit 9f9fc69

Please sign in to comment.