-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
39 lines (35 loc) · 853 Bytes
/
index.html
File metadata and controls
39 lines (35 loc) · 853 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="initial-scale=1, maximum-scale=1">
<script src="libs/webcomponents-lite.min.js"></script>
<link rel="import" href="ex-list.html">
<style>
html,
body {
margin: 0;
padding: 0;
width: 100%;
height: 100%;
background: grey;
overflow: hidden;
}
#sheet {
width: 90%;
height: 100%;
position: absolute;
bottom: 0;
top: 5%;
left: 5%;
right: 5%;
}
</style>
<title>Grability</title>
</head>
<body class="fullbleed layout vertical center-center">
<div id="sheet">
<ex-list url="news_mock.json"></ex-list>
</div>
</body>
</html>