forked from murar8/gfn-unlocker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpopup.html
63 lines (49 loc) · 1.28 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
62
63
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<style>
body {
margin: 8px 8px;
}
.item {
white-space: nowrap;
text-align: center;
width: auto;
padding: 8px;
margin: 0;
margin-top: 8px;
background-color: transparent;
}
.button {
display: block;
font-size: small;
text-decoration: none;
color: white;
background-color: #ac88ff;
outline: none;
border: 1px solid #0047ab;
border-radius: 4px;
}
.button:focus {
box-shadow: 0 0 0 1px #0047ab;
}
#title {
font-size: medium;
border: 2px solid #0047ab;
border-radius: 8px;
}
</style>
</head>
<body>
<h1 class="item" id="title">GeForce NOW Unlocker</h1>
<a href="https://github.com/murar8/gfn-unlocker" target="_blank" class="item button"> Open the project's website</a>
<a href="https://github.com/murar8/gfn-unlocker/issues" target="_blank" class="item button">Report an issue</a>
<a
href="https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=WW7VLKVE9YP8Q&source=url"
target="_blank"
class="item button"
>Make a donation</a
>
</body>
</html>