Spaces:
Running on CPU Upgrade
Running on CPU Upgrade
Add: branded loading page
Browse files- loading.html +59 -0
loading.html
ADDED
|
@@ -0,0 +1,59 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
<!DOCTYPE html>
|
| 2 |
+
<html lang="en">
|
| 3 |
+
<head>
|
| 4 |
+
<meta charset="UTF-8">
|
| 5 |
+
<meta http-equiv="refresh" content="3">
|
| 6 |
+
<title>VAILL — Loading</title>
|
| 7 |
+
<style>
|
| 8 |
+
* { margin: 0; padding: 0; box-sizing: border-box; }
|
| 9 |
+
body {
|
| 10 |
+
background: #1a1a1a;
|
| 11 |
+
display: flex;
|
| 12 |
+
flex-direction: column;
|
| 13 |
+
align-items: center;
|
| 14 |
+
justify-content: center;
|
| 15 |
+
height: 100vh;
|
| 16 |
+
font-family: -apple-system, BlinkMacSystemFont, 'Inter', sans-serif;
|
| 17 |
+
}
|
| 18 |
+
.title {
|
| 19 |
+
color: #CFB991;
|
| 20 |
+
font-size: 2.2rem;
|
| 21 |
+
font-weight: 800;
|
| 22 |
+
letter-spacing: -0.02em;
|
| 23 |
+
margin-bottom: 0.4rem;
|
| 24 |
+
}
|
| 25 |
+
.subtitle {
|
| 26 |
+
color: rgba(255,255,255,0.5);
|
| 27 |
+
font-size: 0.9rem;
|
| 28 |
+
margin-bottom: 2.5rem;
|
| 29 |
+
}
|
| 30 |
+
.spinner {
|
| 31 |
+
width: 42px;
|
| 32 |
+
height: 42px;
|
| 33 |
+
border: 3px solid rgba(207,185,145,0.2);
|
| 34 |
+
border-top: 3px solid #CFB991;
|
| 35 |
+
border-radius: 50%;
|
| 36 |
+
animation: spin 0.8s linear infinite;
|
| 37 |
+
margin-bottom: 1.2rem;
|
| 38 |
+
}
|
| 39 |
+
@keyframes spin { to { transform: rotate(360deg); } }
|
| 40 |
+
.message {
|
| 41 |
+
color: rgba(255,255,255,0.4);
|
| 42 |
+
font-size: 0.82rem;
|
| 43 |
+
}
|
| 44 |
+
.bar {
|
| 45 |
+
position: absolute;
|
| 46 |
+
top: 0; left: 0; right: 0;
|
| 47 |
+
height: 3px;
|
| 48 |
+
background: linear-gradient(90deg, transparent, #CFB991, #e8d5a8, #CFB991, transparent);
|
| 49 |
+
}
|
| 50 |
+
</style>
|
| 51 |
+
</head>
|
| 52 |
+
<body>
|
| 53 |
+
<div class="bar"></div>
|
| 54 |
+
<div class="title">VAILL</div>
|
| 55 |
+
<div class="subtitle">Vanderbilt AI Law Lab</div>
|
| 56 |
+
<div class="spinner"></div>
|
| 57 |
+
<div class="message">Loading AI Legislation Tracker…</div>
|
| 58 |
+
</body>
|
| 59 |
+
</html>
|