-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpopup.html
55 lines (54 loc) · 1.31 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
<!DOCTYPE html>
<html>
<head>
<style>
.main-panel
{
width: 300px;
height: 500px;
}
.main-panel .center-panel
{
width: 200px;
margin: auto;
margin-top: 50px;
}
.main-panel .center-panel h1, .main-panel .center-panel h2
{
text-align: center;
font-size: 20pt;
margin-bottom: 5px;
}
.main-panel .center-panel .trophy-image
{
width: 200px;
height: auto;
margin-bottom: 20px;
}
.main-panel .center-panel .score
{
text-align: center;
color: green;
font-size: 50pt;
}
.main-panel .center-panel .failed
{
text-align: center;
color: red;
font-size: 30pt;
}
</style>
</head>
<body>
<script src="popup.js"></script>
<div class="main-panel">
<div class="center-panel">
<img class="trophy-image" title="trophy image" src="trophy.png">
<h1>Score</h1>
<div class="score" id="count">0</div>
<h2>Inccorect</h2>
<div class="failed" id="incorrect">0</div>
</div>
</div>
</body>
</html>