-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpopup.html
55 lines (46 loc) · 985 Bytes
/
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>
<body>
<style type="text/css">
a {
text-decoration: none;
}
body {
font-family: Roboto, system-ui, sans-serif;
font-size: 81.25%;
}
.item {
display: flex;
align-items: center;
padding: 2px;
}
.score {
text-align: center;
padding: 6px;
font-weight: bold;
}
.title {
text-overflow: ellipsis;
white-space: nowrap;
overflow: hidden;
margin-inline-start: 16px;
}
.domain {
color: rgb(95, 99, 104);
margin-inline-start: 16px;
}
.green {
color: rgb(42, 152, 94);
}
.yellow {
color: rgb(221, 171, 82);
}
.red {
color: rgb(203, 52, 42);
}
</style>
<button id="clear" style="float: right;">Clear History</button>
<div id="history"></div>
<script src="popup.js"></script>
</body>
</html>