Skip to content

Commit

Permalink
Improve the spinner
Browse files Browse the repository at this point in the history
  • Loading branch information
dangershony committed Dec 5, 2023
1 parent baf01c6 commit cc97208
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 8 deletions.
Binary file added src/Angor/Client/wwwroot/Bitcoin-Logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
14 changes: 6 additions & 8 deletions src/Angor/Client/wwwroot/css/app.css
Original file line number Diff line number Diff line change
Expand Up @@ -179,16 +179,14 @@ tr[style*="cursor: pointer;"]:hover {
}

.loader {
border: 16px solid #f3f3f3;
border: 8px solid #eaeaea; /* Light grey for the base circle */
border-top: 8px solid #f7931a; /* Bitcoin orange for the rotating part */
border-radius: 50%;
border-top: 16px solid blue;
border-right: 16px solid green;
border-bottom: 16px solid red;
border-left: 16px solid pink;
width: 120px;
height: 120px;
-webkit-animation: spin 2s linear infinite; /* Safari */
width: 60px; /* Smaller width */
height: 60px; /* Smaller height */
animation: spin 2s linear infinite;
background: url('../bitcoin-logo.png') no-repeat center;
background-size: 90%; /* Adjust the size of the logo as needed */
}

/* Safari */
Expand Down

0 comments on commit cc97208

Please sign in to comment.