-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
96 lines (90 loc) · 2.09 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
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta
name="description"
content="A platform to save your favorite links related to development."
/>
<link rel="icon" href="./public/favicon.ico" />
<title>MyKanBan</title>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
html,
body,
main {
height: 100%;
}
main {
display: flex;
align-items: center;
justify-content: center;
background-image: linear-gradient(19deg, #e1e4e9 0%, #e2e2e2 100%);
flex-direction: column;
}
.loader,
.loader:before,
.loader:after {
width: 2.5em;
height: 2.5em;
animation-fill-mode: both;
animation: bblFadInOut 3.2s infinite ease-in-out;
border-radius: 8px;
}
.loader {
color: #fae439;
font-size: 17px;
position: relative;
text-indent: -9999em;
transform: translateZ(0);
animation-delay: -0.64s;
}
.loader:before,
.loader:after {
content: '';
position: absolute;
top: 0;
}
.loader:before {
left: -3.5em;
animation-delay: -0.94s;
color: #5fe338;
}
.loader:after {
left: 3.5em;
color: #f760a2;
}
@keyframes bblFadInOut {
0%,
80%,
100% {
box-shadow: 0 2.5em 0 -1.3em;
}
40% {
box-shadow: 0 2.5em 0 0;
}
}
</style>
</head>
<body>
<main>
<img src="./public/favicon.ico" alt="" />
<div class="loader">
<span class="loader">my</span>
</div>
</main>
<script>
setTimeout(() => {
window.location.href = 'https://mykanban-sepia.vercel.app/'
}, 2000)
</script>
</body>
</html>