forked from Alterdot/browser-extension
-
Notifications
You must be signed in to change notification settings - Fork 0
/
toolbar.html
executable file
·29 lines (29 loc) · 1.38 KB
/
toolbar.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
<!DOCTYPE html>
<html>
<link rel="stylesheet" href="toolbar.css">
<script src="common.js"></script>
<script src="toolbar.js"></script>
<head>
<title>Alterdot BDNS-IPFS Toolbar</title>
</head>
<body>
<div id='maximized'>
<img src="alterdot256.png" id="toolbar-logo">
<input type="text" id="toolbar-input">
<div id="trigger-minimize">
<svg aria-hidden="true" focusable="false" data-prefix="fas" data-icon="sort-down" class="arrow svg-inline--fa fa-sort-down fa-w-10" role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 320 512">
<path fill="#C53B51" d="M41 288h238c21.4 0 32.1 25.9 17 41L177 448c-9.4 9.4-24.6 9.4-33.9 0L24 329c-15.1-15.1-4.4-41 17-41z">
</path>
</svg>
</div>
</div>
<div id="minimized">
<div id="trigger-maximize">
<svg aria-hidden="true" focusable="false" data-prefix="fas" data-icon="sort-up" class="arrow svg-inline--fa fa-sort-up fa-w-10" role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 320 512">
<path fill="#C53B51" d="M279 224H41c-21.4 0-32.1-25.9-17-41L143 64c9.4-9.4 24.6-9.4 33.9 0l119 119c15.2 15.1 4.5 41-16.9 41z">
</path>
</svg>
</div>
</div>
</body>
</html>