-
Notifications
You must be signed in to change notification settings - Fork 3
/
config.html
49 lines (46 loc) · 1.39 KB
/
config.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
<!doctype html>
<html>
<head>
<title>LeetCode Customiser Extension</title>
<style type="text/css">
body {
margin: 10px;
white-space: nowrap;
}
h1 {
font-size: 15px;
text-align: center;
padding-bottom: 0.5em;
border-bottom: 1px solid #000;
}
#container > div {
float: right;
margin-bottom: 1em;
}
</style>
<script src="config.js"></script>
</head>
<body>
<h1>Configuration</h1>
<div id="container">
<div>
Show Announcement: <input id="announcement" type="checkbox" />
</div>
<div>
Show Acceptance Rate: <input id="acceptanceRate" type="checkbox" />
</div>
<div>
Show Difficulty: <input id="difficulty" type="checkbox" />
</div>
<div>
Show Locked Questions: <input id="lockedQuestions" type="checkbox" />
</div>
<div>
Show Result Count: <input id="resultCountNode" type="checkbox" />
</div>
<div>
Show Solved Difficulty Counts: <input id="solvedDifficultyCounts" type="checkbox" />
</div>
</div>
</body>
</html>