-
Notifications
You must be signed in to change notification settings - Fork 1
/
popup.html
52 lines (52 loc) · 1.37 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
<!DOCTYPE html>
<html>
<head>
<title>Github Stars</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 10px;
background-color: #0d1117;
color: #c9d1d9;
min-width: 500px;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans",
Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji";
}
a {
font-size: 16px;
height: auto;
line-height: 24px;
list-style-type: disc;
overflow-wrap: break-word;
text-align: left;
text-decoration-color: rgb(68, 147, 248);
text-decoration-line: underline;
text-decoration-style: solid;
text-decoration-thickness: auto;
text-size-adjust: 100%;
text-underline-offset: 3.2px;
color: #4493f8;
}
.repo-list {
padding: 0px 12px;
list-style-type: disc;
}
.repo-list li {
margin: 6px 0;
}
.repo-list img {
filter: invert(48%) sepia(100%) saturate(748%) hue-rotate(176deg)
brightness(96%) contrast(101%);
margin-left: 5px;
}
</style>
</head>
<body>
<h1>Top repositories</h1>
<ul class="repo-list" id="repoList">
<li>Loading...</li>
</ul>
<script src="github-stars.js"></script>
<script src="popup.js"></script>
</body>
</html>