-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathindex.html
104 lines (89 loc) · 1.81 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
<!doctype html>
<html>
<head>
<title>React Fullscreen component</title>
<style>
html {
font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
padding: 30px 10px 0 0;
font-size: 20px;
line-height: 1.4;
color: #737373;
background: #f0f0f0;
-webkit-font-smoothing: antialiased;
}
hr {
border: none;
border-top: 1px solid #e6e6e6;
margin: 20px 0;
}
a {
color: #666;
}
h1 {
margin: 0;
font-size: 40px;
text-align: center;
}
h1 span {
color: #bbb;
}
ul {
padding: 0 0 0 40px;
margin: 1em 0;
}
button {
font-size: 13px;
}
nav {
margin: 0 auto;
}
.container {
width: 500px;
margin: 0 auto;
}
#repo-link {
text-align: center;
text-decoration: none;
display: block;
position: absolute;
top: 20px;
left: 20px;
}
#social {
margin: 10px auto;
text-align: center;
}
#container {
width: 500px;
padding: 30px 20px;
margin: 0 auto 50px auto;
background: #fcfcfc;
text-align: center;
border: 1px solid #b3b3b3;
border-radius: 4px;
box-shadow: 0 1px 10px #a7a7a7, inset 0 1px 0 #fff;
}
#container ul {
padding: 0;
margin: 40px 0 0 0;
list-style: none;
}
#demo-img {
width: 100%;
height: auto;
}
#demo-img,
#demo-video {
cursor: pointer;
}
header p {
font-size: 17px;
}
</style>
</head>
<body>
<div id="content"></div>
<script src="browser-bundle.js"></script>
</body>
</html>