-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
60 lines (56 loc) · 1.39 KB
/
index.html
File metadata and controls
60 lines (56 loc) · 1.39 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Cloudscape Design System Demos</title>
<style>
#initial-loader {
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: flex;
align-items: center;
justify-content: center;
background: #ffffff;
z-index: 9999;
}
.loader-content {
text-align: center;
}
.loader-spinner {
width: 48px;
height: 48px;
border: 3px solid rgba(5, 115, 209, 0.2);
border-top-color: #0972d3;
border-radius: 50%;
animation: spin 0.8s linear infinite;
margin: 0 auto 16px;
}
.loader-text {
color: #545b64;
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
font-size: 14px;
font-weight: 400;
}
@keyframes spin {
to {
transform: rotate(360deg);
}
}
</style>
</head>
<body>
<div id="app">
<div id="initial-loader">
<div class="loader-content">
<div class="loader-spinner"></div>
<div class="loader-text">Loading...</div>
</div>
</div>
</div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>