-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
42 lines (34 loc) · 1.35 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
<!DOCTYPE html>
<html>
<head>
<!-- The X-UA-Compatible meta tag allows web authors to choose what version
of Internet Explorer the page should be rendered as.
"IE=edge" tells Internet Explorer to use the highest mode available
to that version of IE. -->
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="images/readium_favicon.png" rel="shortcut icon"/>
<!-- link href="images/readium-touch-icon.png" rel="apple-touch-icon"/ -->
<style>
.library-item{
height: 100px;
}
body:not(.list-view) .library-item .no-cover{
width: 300px;
height: 400px;
font-size: 40px;
}
</style>
<link rel="stylesheet" type="text/css" href="css/readium-all.css">
<script src="scripts/readium-all.js" type="text/javascript"></script>
<title></title>
</head>
<!-- This is all application-specific HTML -->
<body class="chrome-app">
<nav id="app-navbar" class="navbar" role="banner" aria-label="{{Strings.i18n_toolbar}}">
</nav>
<div id="app-container">
</div>
</body>
</html>