-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsplash.html
122 lines (122 loc) · 2.75 KB
/
splash.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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Freedom</title>
<style>
body, html {
height: 100%;
margin: 0;
display: flex;
justify-content: center;
align-items: center;
background: 'transparent';
font-family: Arial, sans-serif;
color: #ffffff;
overflow: 'hidden';
}
.splash-container {
text-align: center;
background: radial-gradient(circle, rgba(36,36,36,1) 0%, rgba(0,0,0,1) 80%);
border-radius: 20px;
width: 600px;
height: 400px;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
padding: 30px;
box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
position: relative;
}
.splash-container::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
border-radius: 20px;
background: linear-gradient(45deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0));
z-index: 0;
}
.splash-container h1 {
font-size: 3em;
margin: 0;
letter-spacing: 8px;
z-index: 1;
text-shadow: 0 4px 10px rgba(255, 255, 255, 0.2);
}
.spinner {
border: 6px solid rgba(255, 255, 255, 0.1);
border-top-color: #ffffff;
border-radius: 50%;
width: 60px;
height: 60px;
animation: spin 1s ease-in-out infinite;
margin: 30px auto;
z-index: 1;
}
@keyframes spin {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
}
.splash-container a {
color: #ffffff;
text-decoration: none;
font-size: 1.2em;
margin-top: 20px;
z-index: 1;
transition: color 0.3s ease;
}
.splash-container a:hover {
color: #f0c040;
}
.github-icon {
position: absolute;
right: 20px;
bottom: 20px;
z-index: 1;
}
.footer {
position: absolute;
bottom: 20px;
font-size: 0.8em;
z-index: 1;
}
.footer::after {
content: '...';
animation: dots 1.5s steps(3, end) infinite;
}
@keyframes dots {
0%, 20% {
content: '';
}
40% {
content: '.';
}
60% {
content: '..';
}
80%, 100% {
content: '...';
}
}
</style>
</head>
<body>
<div class="splash-container">
<h1>FREEDOM</h1>
<div class="spinner"></div>
<a href="https://github.com/arelove" target="_blank" class="github-icon">
<img src="/icons/set-ups/icons8-github-64.png" style="height: 40px;">
</a>
<div class="footer">Loading, please wait</div>
</div>
</body>
</html>