-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathindex.html
66 lines (55 loc) · 1.37 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>React Polygon Example</title>
<link rel="stylesheet" href="./example/app.css">
<link href="https://fonts.googleapis.com/css?family=Open+Sans" rel="stylesheet">
<style>
body {
margin: 0;
padding: 0;
}
.center {
text-align: center;
}
.v-center {
display: inline-block;
vertical-align: middle;
}
.s-50 {
width: 50px;
}
.grey {
color: grey;
}
section {
padding: 20px;
}
section:nth-child(odd) {
background-color: #fff;
}
section:nth-child(even) {
background-color: #efefef;
}
#footer {
margin-bottom: 80px;
}
</style>
</head>
<body class="center">
<h1>
<img class="v-center s-50" src="https://png.icons8.com/nolan/100/ff723f/polygon.png">
<span class="v-center">React Polygon</span>
</h1>
<div id="app"></div>
<div id="footer">
<a class="github-button" href="https://github.com/peteroid/react-polygon" data-size="large" data-count-href="/peteroid/react-polygon/stargazers"
data-show-count="true" data-count-aria-label="# stargazers on GitHub" aria-label="Star peteroid/react-polygon on GitHub">
Star
</a>
</div>
<script src="./build/app.js"></script>
<script async src="https://buttons.github.io/buttons.js"></script>
</body>
</html>