-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpopup.html
91 lines (85 loc) · 2.03 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
<!DOCTYPE html>
<html>
<head>
<style>
body {
min-width: 200px;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
Oxygen, Ubuntu, Cantarell, "Fira Sans", "Droid Sans", "Helvetica Neue",
sans-serif;
background: #fcfcfc;
}
.title {
display: flex;
font-size: 16px;
align-items: center;
font-weight: 500;
justify-content: space-around;
border-bottom: 1.5px solid #aaa;
}
small {
line-height: 0.8;
font-size: 12px;
}
.action {
display: flex;
gap: 4px;
font-family: inherit;
color: #ffffff;
font-size: 13px;
padding: 5px 10px;
font-weight: 500;
margin: 8px auto;
cursor: pointer;
background-color: rgb(45, 69, 151);
border: none;
border-radius: 32px;
box-shadow: -1px -1px 0 rgba(0, 0, 0, 0.05),
0 1px 1px rgba(0, 0, 0, 0.25);
}
.github {
transform: translateX(30%);
display: flex;
cursor: pointer;
gap: 4px;
text-decoration: none;
font-size: 14px;
align-items: center;
}
</style>
</head>
<body>
<div class="title">
<img
src="./docs/static/img/logo.png"
alt="Calendar Icon"
width="36"
height="36"
/>
RaOG-TOP
</div>
<div id="loginContainer">
<small
>Exclusive VTOP enhancement extension for our dear RaOG members
</small>
</div>
<span>
Like it? Consider contributing to the project on GitHub (raog
exclusive).</span
>
<a
href="https://github.com/Prathyush-KKK"
target="_blank"
style="text-decoration: none; color: rgb(81, 81, 81)"
>
<div class="github">
<img
src="https://github.githubassets.com/images/modules/logos_page/GitHub-Mark.png"
alt="GitHub"
width="32"
/>
GitHub
</div>
</a>
</body>
</html>