forked from Ider/mark-page
-
Notifications
You must be signed in to change notification settings - Fork 0
/
blackout_paths.html
56 lines (47 loc) · 1.14 KB
/
blackout_paths.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>
<title>Blackout Pathes - Mark Page</title>
<style type="text/css">
.col {
float: left;
width: 50%
}
li {
font-size: 18px;
}
li:hover {
background-color: #CCC;
}
li span {
margin-left: 20px;
display: inline-block;
cursor: pointer;
background-color: rgba(255, 0, 0, 0.5);
padding: 0 5px;
}
</style>
</head>
<body>
<h1>Blackout Pathes</h1>
<div id="container">
<div id="domains_list_title" class="col">
<h2>Domain List</h2>
</div>
<div class="col">
<h2 id="blackout_paths_title">Blackout Paths</h2>
<div id="add_path_container">
<input type="text" id="input_path" placeholder="/path/to/blackout/"/> <button id="button_add_path">Add Blackout Path</button>
</div>
</div>
<div style="clear:both;"></div>
<div id="domains_list_container" class="col">
</div>
<div id="blackout_paths_container" class="col">
<ul id="blackout_paths_list">
</ul>
</div>
</div>
<script src="blackout_paths.js"></script>
</body>
</html>