-
Notifications
You must be signed in to change notification settings - Fork 5
/
popup.html
28 lines (27 loc) · 889 Bytes
/
popup.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
<!doctype html>
<html>
<head>
<title>Reading List</title>
<!--
- JavaScript and HTML must be in separate files: see our Content Security
- Policy documentation[1] for details and explanation.
-
- [1]: https://developer.chrome.com/extensions/contentSecurityPolicy
-->
<link rel="stylesheet" href="popup.css">
<link href="https://fonts.googleapis.com/css?family=Overpass:400i" rel="stylesheet">
</head>
<body>
<div class="banner">
<img src="books.png" alt="Reading list logo" class="logo">
<h2>Reading List</h2>
</div>
<div class="card hide-scroll">
<div id="list-area" class="scroll"></div>
</div>
<div class="big-num" id="number-read">#</div>
<div class="inner-text">read today</div>
<script src="lib/ramda.min.js"></script>
<script src="bundle.js"></script>
</body>
</html>