-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpopup.html
33 lines (28 loc) · 907 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
29
30
31
32
33
<!DOCTYPE html>
<html>
<head>
<title>Popup</title>
<meta charset="UTF-8">
<script src="library/Chart/Chart.min.js"></script>
<script src="js/popup.js"></script>
<link rel="stylesheet" type="text/css" href="css/popup.css">
</head>
<body>
<div style="display: flex; flex-direction:row;">
<div style="width: 265px; margin-right:10px; border-right: 2px solid lightgray;">
<div class=titre><strong></strong></div>
<canvas id="myChart" width="250" height="250"></canvas>
<div class=titre2><span></span></div>
<p id="websites">
<table>
<tbody></tbody>
</table>
<p>
<a style="margin: 10px auto 0 auto;" href="options.html" target="_blank" class="btn btn-3"></a>
</div>
<div style="width:255px; max-height: 550px; overflow: hidden; height: calc(100vh - 20px);">
<iframe id=todo src="todolist/index.html" frameborder="0"></iframe>
</div>
</div>
</body>
</html>