Spaces:
Build error
Build error
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <title>Processing File</title> | |
| <link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet"> | |
| <style> | |
| body { | |
| background-color: #1c1c1e; | |
| font-family: 'Poppins', sans-serif; | |
| color: #f5f5f7; | |
| display: flex; | |
| justify-content: center; | |
| align-items: center; | |
| height: 100vh; | |
| margin: 0; | |
| } | |
| .loader { | |
| position: relative; | |
| width: 80px; | |
| height: 80px; | |
| } | |
| .loader div { | |
| position: absolute; | |
| width: 100%; | |
| height: 100%; | |
| border: 3px solid #fff; | |
| border-radius: 50%; | |
| border-top-color: transparent; | |
| animation: spin 1s linear infinite; | |
| } | |
| .loader div:nth-child(2) { | |
| animation-delay: -0.5s; | |
| } | |
| @keyframes spin { | |
| 0% { transform: rotate(0deg); } | |
| 100% { transform: rotate(360deg); } | |
| } | |
| h3 { | |
| color: #f5f5f7; | |
| margin-top: 20px; | |
| font-size: 1.5rem; | |
| } | |
| </style> | |
| </head> | |
| <body> | |
| <div class="text-center"> | |
| <div class="loader"> | |
| <div></div> | |
| <div></div> | |
| </div> | |
| <h3>Processing your file...</h3> | |
| </div> | |
| <script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"></script> | |
| </body> | |
| </html> | |