forked from futurepress/epub.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
99 lines (84 loc) · 2.72 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
<!DOCTYPE html>
<html class="no-js">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>ePubJS Examples</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width">
<meta name="apple-mobile-web-app-capable" content="yes">
<style type="text/css">
body {
overflow: auto;
background: #eee;
}
#wrapper {
width: 480px;
height: 640px;
overflow: hidden;
border: 1px solid #ccc;
margin: 28px auto;
background: #fff;
border-radius: 0 5px 5px 0;
}
#area {
width: 480px;
height: 660px;
margin: -30px auto;
-moz-box-shadow: inset 10px 0 20px rgba(0,0,0,.1);
-webkit-box-shadow: inset 10px 0 20px rgba(0,0,0,.1);
box-shadow: inset 10px 0 20px rgba(0,0,0,.1);
}
#area iframe {
padding: 40px 40px;
}
body {
font-size: 1em;
line-height: 1.33em;
font-family: serif;
}
h1 {
text-align: center;
font-size: 1.5em;
line-height: 1.33em;
text-align: center;
padding-bottom: 0em;
text-align: center;
text-transform: uppercase;
font-weight: normal;
letter-spacing: 4px;
padding-top: 60px;
}
ol {
width: 350px;
margin: 50px auto;
/*font-family: sans-serif;*/
}
a {
font-size: 1.2em;
line-height: 1.33em;
color: #000;
}
</style>
</head>
<body>
<div id="main">
<div id="wrapper">
<div id="area">
<h1>EPUB.js<br>Examples</h1>
<ol>
<li><a href="examples/single.html">Single</a></li>
<li><a href="examples/basic.html">Basic</a></li>
<li><a href="examples/contained.html">Contained</a></li>
<li><a href="examples/promises.html">Promises</a></li>
<li><a href="examples/fixed.html">Fixed</a></li>
<li><a href="examples/custom-elements.html">Custom Element</a></li>
<li><a href="examples/mathml.html">MathML</a></li>
<li><a href="examples/hypothesis.html">Annotations with Hypothes.is</a></li>
<li><a href="examples/pagination.html">Pagination</a></li>
</ol>
</div>
</div>
</div>
</body>
</html>