-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
116 lines (100 loc) · 3.36 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta content="seiKiMo!" property="og:title" />
<meta content="Stupid Dumbasses Make Based Software" property="og:description" />
<meta content="https://seikimo.moe" property="og:url" />
<meta content="https://seikimo.moe/seikimo.png" property="og:image" />
<meta content="#52FADB" name="theme-color" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
<link rel="icon" href="/icon.png">
<title>seiKiMo Inc.</title>
<style>
#placeholderBG {
background: linear-gradient(45deg, #0f172a, #1e293b);
width: 100%;
height: 100%;
position: absolute;
top: 0;
left: 0;
z-index: -1;
}
#bars {
display: block;
position: absolute;
top: 50%;
left: 50%;
height: 50px;
width: 50px;
margin: 0 0 0 -75px;
}
#bars span {
position: absolute;
display: block;
bottom: 30px;
width: 27px;
height: 45px;
background: rgba(255, 255, 255, 0.25);
animation: bars1 1.5s infinite ease-in-out;
}
#bars span:nth-child(2) {
left: 33px;
animation-delay: 0.2s;
}
#bars span:nth-child(3) {
left: 66px;
animation-delay: 0.4s;
}
#bars span:nth-child(4) {
left: 99px;
animation-delay: 0.6s;
}
#bars span:nth-child(5) {
left: 132px;
animation-delay: 0.8s;
}
@keyframes bars1 {
0% {
height: 15px;
transform: translateY(0px);
}
25% {
height: 90px;
transform: translateY(15px);
background: #fff;
}
50% {
height: 15px;
transform: translateY(0px);
background: rgba(255, 255, 255, 0.25);
}
100% {
height: 15px;
transform: translateY(0px);
background: rgba(255, 255, 255, 0.25);
}
}
</style>
</head>
<body onload="">
<div id="placeholderBG"></div>
<div id="bars">
<span></span>
<span></span>
<span></span>
<span></span>
<span></span>
</div>
<script>
if (window.location.pathname !== "/") {
document.getElementById("placeholderBG").style.display = "none";
document.getElementById("bars").style.display = "none";
}
</script>
<noscript>You need to enable JavaScript to run this app.</noscript>
<div id="root"></div>
<script type="module" src="/src/index.tsx"></script>
</body>
</html>