-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpopup.html
61 lines (61 loc) · 1.77 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
57
58
59
60
61
<html>
<head>
<title>Popup</title>
<style>
body {
background-color: #f0f0f0;
font-family: Arial, sans-serif;
font-size: 14px;
margin:5px;
padding: 10px;
}
h1 {
font-size: 24px;
font-weight: bold;
text-align: center;
margin-bottom: 5px;
}
#num-solved {
font-size: 16px;
font-weight: bold;
text-align: center;
margin-top: 0px;
}
button {
background-color: #4CAF50;
border: none;
color: white;
padding: 10px 20px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
margin: 4px 2px;
cursor: pointer;
}
#load-solved {
background-color: #008CBA;
font-size: 10px;
margin: 0px 2px;
}
#problem-category {
font-size: 16px;
font-weight: bold;
text-align: center;
margin-bottom: 0px;
}
#show-tags {
margin-bottom: 0px;
}
</style>
</head>
<body>
<h1>Solved</h1>
<p id = "num-solved">0 / i</p>
<button id="load-solved">Reload Problem Data</button>
<p id = "problem-category">Problem Category</p>
<button id="show-tags">Show</button>
<button id="next">Next Problem</button>
<script src="./scripts/popup.js"></script>
</body>
</html>