forked from abinish/ESPNExtension
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpopup.html
More file actions
62 lines (62 loc) · 1.65 KB
/
popup.html
File metadata and controls
62 lines (62 loc) · 1.65 KB
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
<html>
<head>
<title>ESPN Key Retriever</title>
<script src="popup.js"></script>
<style>
body {
font-family: 'Segoe UI', Arial, sans-serif;
background: #0a2342;
margin: 0;
padding: 20px 18px 18px 18px;
min-width: 260px;
color: #fff;
}
h2 {
margin-top: 0;
font-size: 1.2em;
color: #1de9b6;
letter-spacing: 1px;
text-shadow: 0 1px 2px #000;
}
.btn {
display: block;
width: 100%;
margin: 10px 0;
padding: 10px 0;
font-size: 1em;
font-weight: 500;
border: none;
border-radius: 6px;
background: linear-gradient(90deg, #43a047 0%, #1976d2 100%);
color: #fff;
cursor: pointer;
transition: background 0.2s, color 0.2s;
box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
.btn:hover {
background: linear-gradient(90deg, #1de9b6 0%, #1976d2 100%);
color: #fff;
}
.desc {
font-size: 0.98em;
margin-bottom: 16px;
color: #bbdefb;
}
.footer {
margin-top: 18px;
font-size: 0.9em;
color: #1de9b6;
text-align: center;
text-shadow: 0 1px 2px #000;
}
</style>
</head>
<body>
<h2>ESPN Key Retriever</h2>
<div class="desc">Quickly copy your ESPN private league keys for use with GameDayBot.com.</div>
<button class="btn" id="s2">Copy ESPN_S2</button>
<button class="btn" id="swid">Copy SWID</button>
<button class="btn" id="gamedaybot">Visit GameDayBot.com to Sign Up</button>
<div class="footer">GameDayBot.com</div>
</body>
</html>