-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
35 lines (31 loc) · 968 Bytes
/
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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<meta name="theme-color" content="#f48f42" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>GitToken Registry</title>
<link href="./src/assets/stylesheets/bootstrap.min.css" rel="stylesheet" title="United Bootswatch Theme">
<style>
.path {
animation: draw 3.5s infinite;
}
@keyframes draw {
from {
stroke-dashoffset: 1000px;
stroke-dasharray: 100 100;
}
to {
stroke-dashoffset: 0px;
stroke-dasharray: 100 100;
}
}
</style>
</head>
<body>
<div id="app"></div>
<!-- Main -->
<script src="./gittoken-react-components.dist.js"></script>
<!-- <script src="http://localhost:8080/webpack-dev-server.js"></script> -->
</body>
</html>