-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
36 lines (36 loc) · 1.21 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
<!DOCTYPE html>
<html>
<head>
<meta charset='utf-8'/>
<meta name="viewport" content="width=device-width, user-scalable=no">
<title>🍒🎶Cherry Notes</title>
<style>
body #nprogress .spinner {
display: none;
}
.spinner {
margin: 50px auto;
height: 28px;
width: 28px;
animation: rotate 0.8s infinite linear;
border: 8px solid #000;
border-right-color: transparent;
border-radius: 50%;
}
@keyframes rotate {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
}
.label {
text-align: center;
}
</style>
<style>#nprogress{pointer-events:none}#nprogress .bar{background:#29d;position:fixed;z-index:1031;top:0;left:0;width:100%;height:2px}#nprogress .peg{display:block;position:absolute;right:0;width:100px;height:100%;box-shadow:0 0 10px #29d,0 0 5px #29d;opacity:1;-webkit-transform:rotate(3deg) translate(0,-4px);-ms-transform:rotate(3deg) translate(0,-4px);transform:rotate(3deg) translate(0,-4px)}</style>
</head>
<body>
<div id="root">
<div class="spinner"></div>
</div>
<script src='/static/bundle.js'></script>
</body>
</html>