forked from Poheart/FACEIT-HELPER
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpopup.html
56 lines (51 loc) · 1.32 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>FACEIT HELPER</title>
<link rel="stylesheet" type="text/css" href="dragula.min.css">
<style type="text/css">
body {
margin: 0;
min-width: 220px;
}
header {
height: 30px;
display: flex;
justify-content: space-around;
align-items: center;
background: #1a1a1a;
color: #fff;
}
sup {
margin-left: 1px;
vertical-align: text-top;
}
h2, h4 {
margin: 0;
}
.items {
border: 1px solid black;
padding: 5px;
margin: 5px;
}
</style>
</head>
<body>
<header>
<img class="logo" src="icons/icon19.png" alt="Brand">
<p class="title">
<strong>FACEIT HELPER v<span class="version"></span></strong><sup>BETA</sup>
</p>
<p class="status"></p>
</header>
<p id="state"></p>
<h2>Map priority</h2>
<h4>Define your map priority by re-ordering the list</h4>
<ol class="sortable" id="maps"></ol>
<span>1 = Most favorite (ban last); 8 = Least favorite (ban first)</span>
<script type="text/javascript" src="jquery.js"></script>
<script type="text/javascript" src="dragula.min.js"></script>
<script type="text/javascript" src="popup.js"></script>
</body>
</html>