-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
46 lines (42 loc) · 1.31 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/src/favicon.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Book Donation</title>
<style>
.logo {
font-family: Madefor, "Helvetica Neue", Helvetica, Arial, "meiryo", "hiragino kaku gothic pro", sans-serif;
font-size: xx-large;
font-weight: bolder;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
text-align: center;
color: #4460f1;
background: linear-gradient(90deg, #4460f1, blueviolet, #4460f1);
background-repeat: no-repeat;
background-size: 80%;
animation: animate 2s linear infinite;
-webkit-background-clip: text;
-webkit-text-fill-color: rgba(255, 255, 255, 0);
}
@keyframes animate {
0% {
background-position: -500%;
}
100% {
background-position: 500%;
}
}
</style>
</head>
<body>
<div id="root">
<span class="logo">BOOK DONATION</span>
</div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>