-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpopup.html
36 lines (32 loc) · 1.08 KB
/
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
34
35
36
<html>
<head>
<link rel="stylesheet" href="https://cdn.staticfile.org/bulma/0.8.2/css/bulma.min.css" />
<link rel="stylesheet" href="https://cdn.staticfile.org/font-awesome/5.13.0/css/all.min.css" />
</head>
<body>
<div class="columns is-mobile is-multiline is-centered" style="margin:0;">
<div class="column is-narrow">
<span class="icon">
<i class="far fa-star" id="Bookmark"></i>
</span>
</div>
<div class="column is-narrow">
<span class="icon">
<i class="fas fa-list" id="list"></i>
</span>
</div>
<div class="column is-narrow">
<span class="icon">
<i class="fas fa-sync" id="sync"></i>
</span>
</div>
<div class="column is-narrow">
<span class="icon">
<i class="fas fa-cog" id="settings"></i>
</span>
</div>
</div>
<script src="https://cdn.staticfile.org/jquery/3.5.0/jquery.min.js"></script>
<script src="static/js/popup.js"></script>
</body>
</html>