-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathspa-loading-template.html
More file actions
60 lines (53 loc) · 1.16 KB
/
spa-loading-template.html
File metadata and controls
60 lines (53 loc) · 1.16 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
<style>
body {
background-color: #13131f;
/* Midnight theme base */
margin: 0;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
color: #f0eeff;
font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
}
.loader {
display: flex;
flex-direction: column;
align-items: center;
gap: 16px;
}
.spinner {
width: 40px;
height: 40px;
border: 4px solid rgba(124, 92, 252, 0.2);
border-top-color: #7c5cfc;
border-radius: 50%;
animation: spin 1s linear infinite;
}
@keyframes spin {
to {
transform: rotate(360deg);
}
}
h1 {
font-size: 1.2rem;
font-weight: 500;
letter-spacing: 0.5px;
opacity: 0.8;
margin: 0;
animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
0%,
100% {
opacity: 0.6;
}
50% {
opacity: 1;
}
}
</style>
<div class="loader">
<div class="spinner"></div>
<h1>Graphlet</h1>
</div>