-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.html
81 lines (73 loc) · 1.98 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Neko Image Gallery</title>
<meta
name="description"
content="An AI-powered natural language & reverse Image Search Engine"
/>
<link rel="icon" href="/favicon.png" />
<link rel="apple-touch-icon" href="/apple-touch-icon.png" sizes="180x180" />
<meta name="theme-color" content="#2196f3" />
</head>
<body>
<div id="root">
<style>
html, body, #root {
margin: 0;
height: 100%;
}
.loading {
display: flex;
justify-content: center;
align-items: center;
height: 100%;
}
body {
background-color: #fff;
}
@media (prefers-color-scheme: dark) {
body {
background-color: rgb(28, 30, 31) !important;
}
}
h1 {
color: #339bf9;
font-weight: 400;
text-transform: uppercase;
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen-Sans,
Ubuntu, Cantarell, Helvetica, sans-serif;
font-size: 2em;
text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
margin: 0;
}
@keyframes con {
50% {
transform: translateY(-0.4rem);
}
100% {
transform: translateY(0);
}
}
.d {
animation: con 2s ease-out infinite;
}
.d-2 {
animation-delay: 0.5s;
}
.d-3 {
animation-delay: 1s;
}
</style>
<h1 class="loading">
Loading Neko Image Gallery
<span class="d">.</span>
<span class="d d-2">.</span>
<span class="d d-3">.</span>
</h1>
</div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>