-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpopup.html
93 lines (83 loc) · 3 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
92
93
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Connect with Me</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css" crossorigin="anonymous" />
<style>
body {
font-family: 'Arial', sans-serif;
text-align: center;
padding: 20px;
margin: 0;
background: linear-gradient(to bottom, #000000, #333333); /* Black to Gray gradient */
color: white; /* Text color */
height: 200px;
width: 200px;
}
a {
text-decoration: none;
}
#popup-container {
max-width: 1000px; /* Adjust the max-width as needed */
margin: 0 auto;
}
#connect-text {
font-size: 18px;
font-weight: bold;
margin-bottom: 20px;
}
#ad-text {
font-size: 22px;
font-weight: bold;
margin-bottom: 20px;
}
.custom-button {
color: white;
background: linear-gradient(to bottom, #3498db, #2980b9); /* Cyan to Blue gradient */
padding: 10px 24px;
margin: 8px auto;
display: flex;
align-items: center;
border: none;
border-radius: 5px;
cursor: pointer;
transition: transform 300ms ease-in-out;
}
.custom-button .icon {
margin-left: 8px;
}
.custom-button:hover {
transform: scale(1.1);
}
.social-icons {
display: flex;
justify-content: space-around;
font-size: 24px;
margin: 20px;
}
.social-icons a {
color: white;
text-decoration: none;
}
.social-icons a:hover {
color: #2980b9; /* Change color on hover */
}
</style>
<script src="popup.js" type="text/javascript"></script>
</head>
<body>
<div id="popup-container">
<p id="ad-text">Adv. Blocked: <span id="adText">0</span> </p>
<p id="connect-text">Connect With Me!</p>
<div class="social-icons">
<a href="https://twitter.com/frozen_parantha" target="_blank" title="Twitter"><i class="fab fa-twitter"></i></a>
<a href="https://www.linkedin.com/in/achhayapathak" target="_blank" title="LinkedIn"><i class="fab fa-linkedin"></i></a>
<a href="https://github.com/achhayapathak" target="_blank" title="GitHub"><i class="fab fa-github"></i></a>
<a href="mailto:[email protected]" target="_blank" title="Email"><i class="far fa-envelope"></i></a>
</div>
<a href="https://donate.stripe.com/14kcQI22VgAfg0gdQQ" target="_blank" title="Donate"><button class="custom-button">Support Me <span class="icon"><i class="fas fa-hand-holding-heart"></i></span></button></a>
</div>
</body>
</html>