-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
71 lines (66 loc) · 1.64 KB
/
index.html
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
<!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="2; url=/src/pages/mainpage.html" />
<title>Redirecting...</title>
<style>
/* Softer Spinner Styles */
.spinner {
margin: 100px auto;
width: 40px;
height: 40px;
border: 4px solid rgba(0, 0, 0, 0.1);
border-top-color: #6c757d;
border-radius: 50%;
animation: spin 1s linear infinite;
}
@keyframes spin {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
}
/* Subtle Background and Styling */
body {
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
flex-direction: column;
font-family: "Helvetica Neue", Arial, sans-serif;
background: #f8f9fa;
color: #343a40;
text-align: center;
margin: 0;
}
/* Text Styles */
p {
margin-top: 20px;
font-size: 1rem;
}
/* Link Styling */
a {
color: #007bff;
font-weight: 500;
text-decoration: none;
border-bottom: 1px solid #007bff;
transition: color 0.3s ease, border-color 0.3s ease;
}
a:hover {
color: #0056b3;
border-color: #0056b3;
}
</style>
</head>
<body>
<div class="spinner"></div>
<!-- <p>
Redirecting... If you are not redirected,
<a href="/src/pages/mainpage.html">click here</a>.
</p> -->
</body>
</html>