w/raw pre-uploader

This commit is contained in:
2026-02-01 20:09:11 +09:00
parent 05088d3934
commit 95b7377781
26 changed files with 3882 additions and 56 deletions

17
static/css/spin.css Normal file
View File

@@ -0,0 +1,17 @@
#uploader{
display: none;
}
.spin{
width: 40px;
height: 40px;
color: #4D54BA;
border: #54AAFF solid 5px;
border-radius: 10px;
animation: spin 4s linear infinite;
}
@keyframes spin {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
}