-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathHomepageButton.html
More file actions
38 lines (38 loc) · 1.25 KB
/
HomepageButton.html
File metadata and controls
38 lines (38 loc) · 1.25 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
<a href="https://t.me/YourBotName_bot?start=claim" target="_blank" style="text-decoration: none;">
<button style="
padding: 0.9em 2.2em;
font-size: 17px;
font-weight: 600;
color: #ffffff;
background: linear-gradient(135deg, #5cd8fc, #8b5cf6, #00ffb3);
border: none;
border-radius: 14px;
box-shadow: 0 8px 20px rgba(0, 255, 200, 0.25), 0 0 10px rgba(100, 200, 255, 0.2) inset;
backdrop-filter: blur(4px);
transition: all 0.4s ease;
letter-spacing: 0.5px;
position: relative;
overflow: hidden;
display: flex;
align-items: center;
justify-content: center;
gap: 0.6em;
">
<img src="https://upload.wikimedia.org/wikipedia/commons/8/82/Telegram_logo.svg" alt="Telegram" style="width: 24px; height: 24px; z-index:2;">
<span style="position: relative; z-index: 2;">
Claim 21 Sats
</span>
<div style="
content: '';
position: absolute;
top: 0;
left: -50%;
width: 200%;
height: 100%;
background: linear-gradient(120deg, rgba(255,255,255,0.15), rgba(255,255,255,0));
transform: skewX(-20deg);
transition: all 0.6s ease;
z-index: 1;
"></div>
</button>
</a>