-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpopup.html
48 lines (44 loc) · 1.39 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
<!DOCTYPE html>
<html>
<head>
<title>RuBlocker</title>
<style>
.checkbox-row {
display: flex;
flex-direction: row;
align-items: center;
justify-content: left;
width: 282px;
}
.checkbox-row input[type="checkbox"] {
margin-right: 10px;
}
.checkbox-row input[type="text"] {
width: 15px;
}
.checkbox-row label {
font-size: 14px;
font-weight: bold;
color: #333;
padding-right: 8px;
}
.checkbox-row h1 {
margin: 0px;
}
</style>
</head>
<body>
<div class="checkbox-row"><h1>The level of Russophobia</h1></div>
<div class="checkbox-row">
<input type="checkbox" id="checkbox1" name="checkbox1" checked>
<label for="checkbox1">Show ru Percent on</label>
<input type="text" id="threshold1" value="10">%
</div>
<div class="checkbox-row">
<input type="checkbox" id="checkbox2" name="checkbox2" checked>
<label for="checkbox2">Auto "Not Interested" on</label>
<input type="text" id="threshold2" value="95">%
</div>
<script src="popup.js"></script>
</body>
</html>