Created
June 16, 2023 13:48
-
-
Save phpmaps/6eaa486ab23c5feb666e865e59fae12b to your computer and use it in GitHub Desktop.
spinner
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.spinner-container { | |
display: flex; | |
width: 100%; | |
justify-content: center; | |
align-items: center; | |
} | |
@keyframes spinner { | |
0% { | |
transform: rotate(0deg); | |
} | |
100% { | |
transform: rotate(360deg); | |
} | |
} | |
.loading-spinner { | |
width: 200px; | |
height: 200px; | |
border: 10px solid #f3f3f3; | |
border-top: 10px solid #005ea2; | |
border-radius: 50%; | |
animation: spinner 1.5s linear infinite; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
The HTML ...