Files
TaoWeb/static/css/spin.css
2026-02-01 20:09:11 +09:00

17 lines
290 B
CSS

#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); }
}