Add local loading page

This commit is contained in:
2024-01-17 16:46:20 -06:00
parent 3371f4031c
commit 9ac8f95982
5 changed files with 117 additions and 16 deletions

24
static/style.css Normal file
View File

@ -0,0 +1,24 @@
body {
text-align: center;
padding-top: 100px;
}
.spinner {
border: 16px solid #f3f3f3;
border-top: 16px solid #002554;
border-radius: 50%;
width: 120px;
height: 120px;
animation: spin 2s linear infinite;
margin: auto;
}
@keyframes spin {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
}
p {
margin-top: 20px;
font-size: 20px;
}