-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
47 lines (45 loc) · 1.36 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<link
href="https://fonts.googleapis.com/css?family=Lato:300,400,700&display=swap"
rel="stylesheet"
/>
<link
href="https://fonts.googleapis.com/icon?family=Material+Icons"
rel="stylesheet"
/>
<link href="/libs/resource-list/resource-list.css" rel="stylesheet" />
<link href="/libs/title/title.css" rel="stylesheet" />
<link href="/libs/filters-entry/filters-entry.css" rel="stylesheet" />
<link href="/libs/filters/filters.css" rel="stylesheet" />
<link href="/libs/modal/modal.css" rel="stylesheet" />
<script src="rxjs-6.5.2.js"></script>
<script type="module" src="libs/main.js"></script>
<title>Learn Reactive</title>
<style>
* {
font-family: 'Lato', sans-serif;
}
html,
body {
padding: 0;
margin: 0;
background-color: #FAFAFA;
}
* {
-webkit-overflow-scrolling: touch;
}
</style>
</head>
<body>
<section id="title"></section>
<section id="list"></section>
<section id="filters-entry"></section>
<section id="filters"></section>
<section id="modal" class="closed"></section>
</body>
</html>