This commit is contained in:
hugo-profile bot
2021-08-09 17:27:10 +00:00
parent dcda8eef05
commit 5ea0bf477b
58 changed files with 3150 additions and 0 deletions
+26
View File
@@ -0,0 +1,26 @@
#loader {
position: fixed;
border: 5px solid #007bff;
border-radius: 50%;
border-top: 5px solid #444444;
border-bottom: 5px solid #444444;
border-right: 5px solid #444444;
width: 50px;
height: 50px;
animation: spin 1s linear infinite;
}
@keyframes spin {
100% {
transform: rotate(360deg);
}
}
.center {
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
margin: auto;
}