-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.ejs
47 lines (47 loc) · 1.13 KB
/
index.ejs
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
<!doctype html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="https://fonts.googleapis.com/css?family=Source+Code+Pro" rel="stylesheet">
<title>Kesey</title>
</head>
<body>
<div id="root">
<div class="loader"></div>
<style>
body {
background: #1a1a1a;
color: #white;
margin: 0;
}
#root {
width: 100vw;
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
}
.loader {
border: 5px solid #333;
border-top: 5px solid #83ffc8;
border-radius: 50%;
width: 50px;
height: 50px;
animation: spin 2s linear infinite;
}
@keyframes spin {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
}
body {
background: #f7f7f8;
color: #999;
}
.loader {
border: 5px solid #666;
border-top: 5px solid #4353ff;
}
</style>
</div>
</body>
</html>