legislation-tracker / loading.html
ramanna's picture
Add: branded loading page
711a7b6 verified
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="refresh" content="3">
<title>VAILL — Loading</title>
<style>
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
background: #1a1a1a;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
height: 100vh;
font-family: -apple-system, BlinkMacSystemFont, 'Inter', sans-serif;
}
.title {
color: #CFB991;
font-size: 2.2rem;
font-weight: 800;
letter-spacing: -0.02em;
margin-bottom: 0.4rem;
}
.subtitle {
color: rgba(255,255,255,0.5);
font-size: 0.9rem;
margin-bottom: 2.5rem;
}
.spinner {
width: 42px;
height: 42px;
border: 3px solid rgba(207,185,145,0.2);
border-top: 3px solid #CFB991;
border-radius: 50%;
animation: spin 0.8s linear infinite;
margin-bottom: 1.2rem;
}
@keyframes spin { to { transform: rotate(360deg); } }
.message {
color: rgba(255,255,255,0.4);
font-size: 0.82rem;
}
.bar {
position: absolute;
top: 0; left: 0; right: 0;
height: 3px;
background: linear-gradient(90deg, transparent, #CFB991, #e8d5a8, #CFB991, transparent);
}
</style>
</head>
<body>
<div class="bar"></div>
<div class="title">VAILL</div>
<div class="subtitle">Vanderbilt AI Law Lab</div>
<div class="spinner"></div>
<div class="message">Loading AI Legislation Tracker&hellip;</div>
</body>
</html>