forked from digitalbiblesociety/browserbible
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
79 lines (73 loc) · 1.43 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
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>inScript Bible Browser</title>
<style>
body {
background: #ccc;
}
#app {
width: 300px;
height: 220px;
padding: 20px;
font-family: Helvetica, Arial;
position: absolute;
top: 50%;
left: 50%;
margin: -120px 0 0 -160px;
background: #fff;
box-shadow: rgba(0,0,0,0.5) 0 0 10px;
}
#app h1 {
font-size: 16px;
text-align: center;
margin: 20px 0;
}
#versions {
overflow: hidden;
margin: 0 0 0 -20px;
padding: 0;
}
#versions li {
margin: 0;
padding: 0;
float: left;
list-style-type: none;
}
#versions a {
display: block;
float: left;
margin: 0 0 0 20px;
background: #ddd;
border: solid 1px #333;
width: 138px;
text-align: center;
padding: 30px 0;
text-decoration: none;
color: #333;
}
#versions a:hover {
background: #ccc;
}
#app p {
margin: 30px 0 0 0;
font-size: 12px;
text-align: center;
}
#app p a{
color: #888;
}
</style>
</head>
<body>
<div id="app">
<h1>inScript Bible Browser</h1>
<ul id="versions">
<li><a href="app/reader.html">Reader</a></li>
<li><a href="app/index.html">Desktop</a></li>
</ul>
<p>Built by the <a href="http://dbsbible.org">Digital Bible Society</a>, available at <a href="http://github.com/digitalbiblesociety">github</a>
</div>
</body>
</html>