Skip to content

Commit

Permalink
Modified spinner css
Browse files Browse the repository at this point in the history
  • Loading branch information
vinayjain18 committed Aug 4, 2024
1 parent 4ee0e8d commit 7073cad
Showing 1 changed file with 16 additions and 10 deletions.
26 changes: 16 additions & 10 deletions templates/dashboard.html
Original file line number Diff line number Diff line change
Expand Up @@ -18,18 +18,24 @@
new WOW().init();
</script>
<style>
@keyframes spin {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
/* Add this CSS for the new spinner */
@keyframes spin {
0% {
transform: rotate(0deg);
}
.spinner {
border: 4px solid rgba(255, 255, 255, 0.3);
border-radius: 50%;
border-top: 4px solid #ffffff;
width: 40px;
height: 40px;
animation: spin 1s linear infinite;
100% {
transform: rotate(360deg);
}
}

.spinner {
border: 4px solid rgba(0, 0, 0, 0.1);
border-top: 4px solid #09f;
border-radius: 50%;
width: 36px;
height: 36px;
animation: spin 1s linear infinite;
}
</style>
</head>

Expand Down

0 comments on commit 7073cad

Please sign in to comment.