-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathindex.html
62 lines (62 loc) · 1.33 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
<!DOCTYPE html>
<html>
<title>react-rebound demo</title>
<head>
<style>
h1, h2, body, button {
font: 16px/24px -apple-system, BlinkMacSystemFont, sans-serif;
}
body {
max-width: 600px;
padding: 0 20px;
margin: 0 auto;
}
a {
color: #6699CC;
text-decoration: none;
}
h1 {
font-weight: bold;
font-size: 24px;
}
h2 {
margin: 0;
padding: 0;
font-weight: bold;
margin-bottom: 5px;
}
section {
padding: 20px 0;
border-bottom: 1px solid #eee;
}
button {
background: teal;
color: white;
padding: 10px 20px;
border: none;
outline: none;
}
.c1 {background: #EC5f67;}
.c2 {background: #F99157;}
.c3 {background: #FAC863;}
.c4 {background: #99C794;}
.c5 {background: #5FB3B3;}
.c6 {background: #6699CC;}
.c7 {background: #C594C5;}
.loading {
font-size: 24px;
line-height: 36px;
text-align: center;
position: relative;
color: #ccc;
top: 50vh;
transform: translateY(-50%);
white-space: pre-wrap;
}
</style>
</head>
<body>
<div id="wrapper"></div>
<script src="./demo.js"></script>
</body>
</html>