-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
89 lines (80 loc) · 2.31 KB
/
index.html
File metadata and controls
89 lines (80 loc) · 2.31 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="refresh" content="0;url=https://outer-white-mouse.supernova-docs.io/" />
<link rel="canonical" href="https://outer-white-mouse.supernova-docs.io/" />
<title>Redirecting — Teradata Design System</title>
<style>
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
min-height: 100vh;
display: flex;
align-items: center;
justify-content: center;
background: #182032; /* cv-dark-surface */
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
color: #ebe8ec; /* cv-dark-on-surface */
}
.container {
text-align: center;
padding: 2rem;
}
.logo {
width: 48px;
height: 48px;
margin: 0 auto 1.5rem;
border-radius: 12px;
background: #ff5f02; /* cv-theme-colors-logo / tertiary */
display: flex;
align-items: center;
justify-content: center;
font-weight: 700;
font-size: 1.25rem;
color: #ffffff; /* cv-light-on-tertiary */
}
h1 {
font-size: 1.125rem;
font-weight: 500;
letter-spacing: 0.01em;
margin-bottom: 0.75rem;
color: #ebe8ec; /* cv-dark-on-surface */
}
.spinner {
width: 20px;
height: 20px;
margin: 1.25rem auto 1rem;
border: 2px solid #1e273c; /* cv-dark-surface-container */
border-top-color: #ff5f02; /* cv-theme-colors-logo */;
border-radius: 50%;
animation: spin 0.8s linear infinite;
}
@keyframes spin {
to { transform: rotate(360deg); }
}
p {
font-size: 0.875rem;
color: #d5d3d8; /* cv-dark-on-surface-variant */
line-height: 1.5;
}
a {
color: #688bf1; /* cv-dark-primary */
text-decoration: none;
border-bottom: 1px solid transparent;
transition: border-color 0.2s;
}
a:hover {
border-bottom-color: #688bf1; /* cv-dark-primary */
}
</style>
</head>
<body>
<div class="container">
<div class="logo">TD</div>
<h1>Teradata Design System</h1>
<div class="spinner"></div>
<p>Redirecting to <a href="https://outer-white-mouse.supernova-docs.io/">design documentation</a></p>
</div>
</body>
</html>